mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 23:32:04 +00:00
Fixed wrong height of player coordinates text
This commit is contained in:
parent
fd7b833ad5
commit
5b079dd40b
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue