From 3cfe43b5e8e524c200d75220ea9384120a6f368f Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 10 Sep 2023 10:26:05 +0200 Subject: [PATCH] Updated an another missing OS.run() call. --- platform/osx/pandemonium_main_osx.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/osx/pandemonium_main_osx.mm b/platform/osx/pandemonium_main_osx.mm index da6179042..269874b2a 100644 --- a/platform/osx/pandemonium_main_osx.mm +++ b/platform/osx/pandemonium_main_osx.mm @@ -71,7 +71,7 @@ int main(int argc, char **argv) { } if (Main::start()) { - os.run(); // it is actually the OS that decides how to run + os.main_run(); // it is actually the OS that decides how to run } Main::cleanup();