You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Cleanup unnecessary debug prints
This commit is contained in:
@@ -163,7 +163,10 @@ void register_gdnative_types() {
|
||||
|
||||
// run singletons
|
||||
|
||||
Array singletons = ProjectSettings::get_singleton()->get("gdnative/singletons");
|
||||
Array singletons = Array();
|
||||
if (ProjectSettings::get_singleton()->has_setting("gdnative/singletons")) {
|
||||
singletons = ProjectSettings::get_singleton()->get("gdnative/singletons");
|
||||
}
|
||||
|
||||
singleton_gdnatives.resize(singletons.size());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user