File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1414using namespace godot ;
1515
1616static Ref<ResourceFormatLoaderSQLite> sqlite_loader;
17- const char * DEFAULT_DB_NAME = " filesystem/import/sqlite/default_extension" ;
17+ const char *DEFAULT_DB_NAME = " filesystem/import/sqlite/default_extension" ;
1818
1919void initialize_sqlite_module (ModuleInitializationLevel p_level) {
2020 if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
@@ -29,9 +29,9 @@ void initialize_sqlite_module(ModuleInitializationLevel p_level) {
2929 ResourceLoader::get_singleton ()->add_resource_format_loader (sqlite_loader);
3030 PackedStringArray array;
3131 array.push_back (" db" );
32-
32+
3333 ProjectSettings *project_settings = ProjectSettings::get_singleton ();
34-
34+
3535 if (!project_settings->has_setting (DEFAULT_DB_NAME)) {
3636 project_settings->set (DEFAULT_DB_NAME, " " );
3737 }
Original file line number Diff line number Diff line change 33
44#include < godot_cpp/classes/file_access.hpp>
55
6-
76void SQLiteResource::set_file (const String &p_file) {
87 file = p_file;
98 emit_changed ();
You can’t perform that action at this time.
0 commit comments