From a797db74dad1551db39c10a2d2b3c8100dd7e73b Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 4 Jun 2017 16:21:10 +0300 Subject: [PATCH] Silenced scripting warning from main .pk3 Script warning, "gzdoom.pk3:zscript/menu/playercontrols.txt" line 526: Truncation of floating point value --- wadsrc/static/zscript/menu/playercontrols.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wadsrc/static/zscript/menu/playercontrols.txt b/wadsrc/static/zscript/menu/playercontrols.txt index b5bd7c79e..4200627d9 100644 --- a/wadsrc/static/zscript/menu/playercontrols.txt +++ b/wadsrc/static/zscript/menu/playercontrols.txt @@ -523,8 +523,8 @@ class ListMenuItemSlider : ListMenuItemSelectable double x = SmallFont.StringWidth ("Green") + 8 + mXpos; double x2 = SmallFont.StringWidth (text) + 8 + mXpos; - mDrawX = MAX(x2, x); + mDrawX = int(MAX(x2, x)); DrawSlider (mDrawX, mYpos); } -} \ No newline at end of file +}