File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,19 @@ dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.cte
1818compress/mode=0
1919compress/high_quality=false
2020compress/lossy_quality=0.7
21+ compress/uastc_level=0
22+ compress/rdo_quality_loss=0.0
2123compress/hdr_compression=1
2224compress/normal_map=0
2325compress/channel_pack=0
2426mipmaps/generate=false
2527mipmaps/limit=-1
2628roughness/mode=0
2729roughness/src_normal=""
30+ process/channel_remap/red=0
31+ process/channel_remap/green=1
32+ process/channel_remap/blue=2
33+ process/channel_remap/alpha=3
2834process/fix_alpha_border=true
2935process/premult_alpha=false
3036process/normal_map_invert_y=false
Original file line number Diff line number Diff line change @@ -905,7 +905,7 @@ bool SQLite::import_from_buffer(PackedByteArray json_buffer) {
905905
906906 /* Find all tables that are present in this database */
907907 /* We don't care about indexes or triggers here since they get dropped automatically when their table is dropped */
908- query (String (" SELECT name FROM sqlite_master WHERE type = 'table';" ));
908+ query (String (" SELECT name,type FROM sqlite_master WHERE type = 'table';" ));
909909 TypedArray<Dictionary> old_table_array = query_result.duplicate (true );
910910#ifdef SQLITE_ENABLE_FTS5
911911 /* FTS5 creates a bunch of shadow tables that cannot be dropped manually! */
You can’t perform that action at this time.
0 commit comments