From 1db8e810df6389b84dafb50b51ed0c8a558fcf5c Mon Sep 17 00:00:00 2001 From: toaster <rollerorbital@gmail.com> Date: Tue, 21 May 2024 00:35:57 +0100 Subject: [PATCH] G_SetGameModified: silent parameter is now unused, please void for ERRORMODE --- src/g_game.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/g_game.c b/src/g_game.c index 08ea0274ec..62fa797d34 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -655,6 +655,8 @@ static void G_UpdateRecordReplays(void) // for consistency among messages: this marks the game as modified. void G_SetGameModified(boolean silent, boolean major) { + (void)silent; + if ((majormods && modifiedgame) || !mainwads || (refreshdirmenu & REFRESHDIR_GAMEDATA)) // new gamedata amnesty? return; -- GitLab