mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-23 04:16:50 +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.");
|
fatal("no video module available.");
|
||||||
screen_size = env->video->get_screen_size();
|
screen_size = env->video->get_screen_size();
|
||||||
}
|
}
|
||||||
void run_() { main_run(); }
|
void run_() { run(); }
|
||||||
int get_exit_code_() { return get_exit_code(); }
|
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)
|
if (err != OK)
|
||||||
return 255;
|
return 255;
|
||||||
if (Main::start())
|
if (Main::start())
|
||||||
os.main_run();
|
os.run();
|
||||||
Main::cleanup();
|
Main::cleanup();
|
||||||
return os.get_exit_code();
|
return os.get_exit_code();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user