File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1002,14 +1002,17 @@ void main_loop_iteration(void* user_data)
10021002int main (int argc, const char ** argv)
10031003{
10041004 try {
1005+ // std::cout << "main(): enter" << std::endl;
10051006 std::unique_ptr<ruisapp::application> app = ruisapp::application_factory::make_application (argc, argv);
10061007 if (!app) {
10071008 // Not an error. The application just did not show any GUI to the user.
10081009 return 0 ;
10091010 }
1011+ // std::cout << "main(): app created" << std::endl;
10101012
10111013#if CFG_OS_NAME == CFG_OS_NAME_EMSCRIPTEN
10121014 emscripten_set_main_loop_arg (&main_loop_iteration, app.release (), 0 , false );
1015+ // std::cout << "main(): emscripten loop is set up" << std::endl;
10131016 return 0 ;
10141017#else
10151018 while (!get_impl (*app).quit_flag .load ()) {
You can’t perform that action at this time.
0 commit comments