Fix build with gcc in C23 mode.

I wonder why this didn't give at least a warning in C11 mode. The
pointer missmatched, regardless which C standard we are following.
This commit is contained in:
Yamagi 2025-03-01 12:31:10 +01:00
parent 049784f0df
commit 853f832cbd

View file

@ -2265,7 +2265,7 @@ CrosshairFunc(void *unused)
}
static void
PauseFocusFunc()
PauseFocusFunc(void *unused)
{
Cvar_SetValue("vid_pauseonfocuslost", (float)s_options_pauseonfocus_box.curvalue);
}