Fixed wrong height of player coordinates text

This commit is contained in:
alexey.lysiuk 2016-08-06 17:47:33 +03:00 committed by Christoph Oelckers
parent fd7b833ad5
commit 5b079dd40b
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}