From f31e8b27d5a2cd589044621ac0fe38f06519881b Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 21 Jul 2021 16:55:03 +0200 Subject: [PATCH] Fixed a warning in win/win.c . --- src/win/win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/win.c b/src/win/win.c index 5a32b3772..12655373e 100644 --- a/src/win/win.c +++ b/src/win/win.c @@ -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); }