1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

load_from_globals() -> load_from_project_settings()

This commit is contained in:
Eric M
2020-10-02 17:04:09 +10:00
parent 593e35346a
commit e5376fb129
3 changed files with 4 additions and 4 deletions

View File

@@ -1143,7 +1143,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
use_custom_res = false;
input_map->load_default(); //keys for editor
} else {
input_map->load_from_globals(); //keys for game
input_map->load_from_project_settings(); //keys for game
}
if (bool(ProjectSettings::get_singleton()->get("application/run/disable_stdout"))) {