From aabddd69f145c59e5c3fd5b711147e3d29b55125 Mon Sep 17 00:00:00 2001 From: MascaraSnake Date: Sat, 23 Nov 2019 18:51:32 +0100 Subject: [PATCH] Fixed a missing space in the "Speeding off to..." text --- src/p_setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_setup.c b/src/p_setup.c index b729177aa..83f1d475b 100644 --- a/src/p_setup.c +++ b/src/p_setup.c @@ -2809,7 +2809,7 @@ boolean P_SetupLevel(boolean skipprecip) snprintf(tx, 63, "%s%s%s", mapheaderinfo[gamemap-1]->lvlttl, (mapheaderinfo[gamemap-1]->levelflags & LF_NOZONE) ? "" : " Zone", - (mapheaderinfo[gamemap-1]->actnum > 0) ? va("%d",mapheaderinfo[gamemap-1]->actnum) : ""); + (mapheaderinfo[gamemap-1]->actnum > 0) ? va(" %d",mapheaderinfo[gamemap-1]->actnum) : ""); V_DrawSmallString(1, 195, V_ALLOWLOWERCASE|V_TRANSLUCENT, tx); I_UpdateNoVsync(); }