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

View file

@ -891,16 +891,16 @@ static void DrawCoordinates(player_t * CPlayer)
default: default:
case 0: case 0:
vwidth = SCREENWIDTH; vwidth = SCREENWIDTH;
vheight = SCREENWIDTH; vheight = SCREENHEIGHT;
break; break;
case 1: case 1:
case 2: case 2:
vwidth = SCREENWIDTH/2; vwidth = SCREENWIDTH/2;
vheight = SCREENWIDTH/2; vheight = SCREENHEIGHT/2;
break; break;
case 3: case 3:
vwidth = SCREENWIDTH/4; vwidth = SCREENWIDTH/4;
vheight = SCREENWIDTH/4; vheight = SCREENHEIGHT/4;
break; break;
} }