mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-27 22:42:57 +00:00
- Fixed truncation warnings in playerdisplay.zs
This commit is contained in:
parent
787b0d2480
commit
7da9f33cf9
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ class ListMenuItemPlayerDisplay : ListMenuItem
|
|||
DTA_Color, c,
|
||||
DTA_Masked, true);
|
||||
|
||||
Screen.DrawFrame (x, y, 72*sx, 80*sy-1);
|
||||
Screen.DrawFrame (x, y, int(72*sx), int(80*sy-1));
|
||||
|
||||
if (mPlayerState != NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue