From 5b079dd40bbbd83617e62b66c62a04c26dd57023 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sat, 6 Aug 2016 17:47:33 +0300 Subject: [PATCH] Fixed wrong height of player coordinates text --- src/g_shared/shared_hud.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/g_shared/shared_hud.cpp b/src/g_shared/shared_hud.cpp index c9e87d642..cddc86ee4 100644 --- a/src/g_shared/shared_hud.cpp +++ b/src/g_shared/shared_hud.cpp @@ -891,16 +891,16 @@ static void DrawCoordinates(player_t * CPlayer) default: case 0: vwidth = SCREENWIDTH; - vheight = SCREENWIDTH; + vheight = SCREENHEIGHT; break; case 1: case 2: vwidth = SCREENWIDTH/2; - vheight = SCREENWIDTH/2; + vheight = SCREENHEIGHT/2; break; case 3: vwidth = SCREENWIDTH/4; - vheight = SCREENWIDTH/4; + vheight = SCREENHEIGHT/4; break; }