You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Fix custom resource path look-up per command line
This commit is contained in:
@@ -337,7 +337,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|||||||
|
|
||||||
String video_driver = "";
|
String video_driver = "";
|
||||||
String audio_driver = "";
|
String audio_driver = "";
|
||||||
String game_path = ".";
|
String game_path;
|
||||||
bool upwards = false;
|
bool upwards = false;
|
||||||
String debug_mode;
|
String debug_mode;
|
||||||
String debug_host;
|
String debug_host;
|
||||||
@@ -693,6 +693,9 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|||||||
I = N;
|
I = N;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (game_path.empty()) {
|
||||||
|
game_path = ".";
|
||||||
|
}
|
||||||
if (globals->setup(game_path, main_pack, upwards) == OK) {
|
if (globals->setup(game_path, main_pack, upwards) == OK) {
|
||||||
found_project = true;
|
found_project = true;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user