From aff27e13221ad991130ed4fe51617e4e36546900 Mon Sep 17 00:00:00 2001 From: cypress Date: Mon, 23 Oct 2023 16:56:13 -0400 Subject: [PATCH] Fix chapter text positioning --- source/cl_hud.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/cl_hud.c b/source/cl_hud.c index 6590c8d..a7a6d72 100644 --- a/source/cl_hud.c +++ b/source/cl_hud.c @@ -636,7 +636,7 @@ void HUD_Rounds (void) HUD_WorldText(value2); if (has_chaptertitle == false) - Draw_ColoredString(6, vid.height/2 + 40, "'Nazi Zombies'", 255, 255, 255, value2, 1); + Draw_ColoredString(6, vid.height/2 + 50, "'Nazi Zombies'", 255, 255, 255, value2, 1); value -= cl.time * 0.4; value2 += cl.time * 0.4; @@ -652,7 +652,7 @@ void HUD_Rounds (void) HUD_WorldText(255); if (has_chaptertitle == false) - Draw_ColoredString(4, vid.height/2 + 40, "'Nazi Zombies'", 255, 255, 255, 255, 1); + Draw_ColoredString(4, vid.height/2 + 50, "'Nazi Zombies'", 255, 255, 255, 255, 1); value2 += cl.time * 0.4; @@ -666,7 +666,7 @@ void HUD_Rounds (void) HUD_WorldText(value2); if (has_chaptertitle == false) - Draw_ColoredString(4, vid.height/2 + 40, "'Nazi Zombies'", 255, 255, 255, value2, 1); + Draw_ColoredString(4, vid.height/2 + 50, "'Nazi Zombies'", 255, 255, 255, value2, 1); value2 -= cl.time * 0.4;