Fix basenumlaps prints

This commit is contained in:
TehRealSalt 2018-07-27 22:21:13 -04:00
parent 7073c9ede2
commit a80c6ccf39

View file

@ -5194,9 +5194,9 @@ static void BaseNumLaps_OnChange(void)
if (gamestate == GS_LEVEL)
{
if (cv_basenumlaps.value)
CONS_Printf(M_GetText("Number of laps will be changed to map defaults next round.\n"));
else
CONS_Printf(M_GetText("Number of laps will be changed to %d next round.\n"), cv_basenumlaps.value);
else
CONS_Printf(M_GetText("Number of laps will be changed to map defaults next round.\n"));
}
}