From e39c4b3489f11e8919a63b82296ec97dfd09449a Mon Sep 17 00:00:00 2001 From: Andrei Drexler Date: Sun, 17 Dec 2023 15:41:13 +0100 Subject: [PATCH] Add missing printf argument (forgotten in a30008d6b89774292984d3a788bd656e3299901d) --- Quake/host_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/host_cmd.c b/Quake/host_cmd.c index bcb64c5a0..995a664d7 100644 --- a/Quake/host_cmd.c +++ b/Quake/host_cmd.c @@ -2557,7 +2557,7 @@ static void Host_Loadgame_f (void) { if (!Modlist_IsInstalled (com_token)) { - Con_Printf ("ERROR: mod \"%s\" is not installed.\n"); + Con_Printf ("ERROR: mod \"%s\" is not installed.\n", com_token); return; } COM_SwitchGame (com_token);