mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-04-05 09:58:24 +00:00
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:
parent
049784f0df
commit
853f832cbd
1 changed files with 1 additions and 1 deletions
|
@ -2265,7 +2265,7 @@ CrosshairFunc(void *unused)
|
|||
}
|
||||
|
||||
static void
|
||||
PauseFocusFunc()
|
||||
PauseFocusFunc(void *unused)
|
||||
{
|
||||
Cvar_SetValue("vid_pauseonfocuslost", (float)s_options_pauseonfocus_box.curvalue);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue