Merge pull request #23035 from voithos/missingpck
Show an alert when a project is not found in release mode
This commit is contained in:
commit
a3072aa35e
1 changed files with 3 additions and 1 deletions
|
@ -729,7 +729,9 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||||
#ifdef TOOLS_ENABLED
|
#ifdef TOOLS_ENABLED
|
||||||
editor = false;
|
editor = false;
|
||||||
#else
|
#else
|
||||||
OS::get_singleton()->print("Error: Could not load game path '%s'.\n", project_path.ascii().get_data());
|
String error_msg = "Error: Could not load game data at path '" + project_path + "'. Is the .pck file missing?\n";
|
||||||
|
OS::get_singleton()->print(error_msg.ascii().get_data());
|
||||||
|
OS::get_singleton()->alert(error_msg);
|
||||||
|
|
||||||
goto error;
|
goto error;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue