mirror of
https://github.com/libretro/Play-.git
synced 2024-12-03 15:01:10 +00:00
17 lines
315 B
C++
17 lines
315 B
C++
#include "MainWindow.h"
|
|
|
|
#ifdef VTUNE_ENABLED
|
|
#include <jitprofiling.h>
|
|
#endif
|
|
|
|
int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
|
|
{
|
|
CPS2VM virtualMachine;
|
|
CMainWindow MainWindow(virtualMachine);
|
|
MainWindow.Loop();
|
|
#ifdef VTUNE_ENABLED
|
|
iJIT_NotifyEvent(iJVM_EVENT_TYPE_SHUTDOWN, NULL);
|
|
#endif
|
|
return 0;
|
|
}
|