mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-22 20:06:49 +01:00
Call the intended method.
This commit is contained in:
parent
a33532f7ad
commit
ba900448ed
@ -651,7 +651,7 @@ public:
|
||||
fatal("no video module available.");
|
||||
screen_size = env->video->get_screen_size();
|
||||
}
|
||||
void run_() { main_run(); }
|
||||
void run_() { run(); }
|
||||
int get_exit_code_() { return get_exit_code(); }
|
||||
};
|
||||
|
||||
|
@ -438,7 +438,7 @@ extern "C" int frt_godot_main(int argc, char *argv[]) {
|
||||
if (err != OK)
|
||||
return 255;
|
||||
if (Main::start())
|
||||
os.main_run();
|
||||
os.run();
|
||||
Main::cleanup();
|
||||
return os.get_exit_code();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user