Fixed a warning in win/win.c .

This commit is contained in:
OBattler
2021-07-21 16:55:03 +02:00
parent 323a961f22
commit f31e8b27d5

View File

@@ -545,7 +545,7 @@ do_start(void)
win_log("Main timer precision: %llu\n", timer_freq);
/* Start the emulator, really. */
thMain = thread_create(main_thread, &is_quit);
thMain = thread_create(main_thread, NULL);
SetThreadPriority(thMain, THREAD_PRIORITY_HIGHEST);
}