DolphinQt: adapt so that it can boot games.

This commit is contained in:
Augustin Cavalier
2014-11-02 13:53:48 -05:00
parent 29593d403b
commit 3d63d22e53
11 changed files with 395 additions and 63 deletions

View File

@ -54,10 +54,11 @@ int main(int argc, char* argv[])
return 1;
}
DMainWindow w;
w.show();
g_main_window = new DMainWindow();
g_main_window->show();
int retcode = app.exec();
delete g_main_window;
UICommon::Shutdown();
return retcode;
}