From f028e23ee3cb36b48f4b4d72bea13a4da13c4d83 Mon Sep 17 00:00:00 2001 From: Marisa the Magician Date: Mon, 20 Nov 2023 13:29:36 +0100 Subject: [PATCH] Small oops in the statscreen drawer. --- language.version | 4 ++-- zscript/menu/swwm_inter.zsc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/language.version b/language.version index bdbe3f9a1..a8ebc7c40 100644 --- a/language.version +++ b/language.version @@ -1,3 +1,3 @@ [default] -SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r1012 \cu(Mon 20 Nov 13:03:00 CET 2023)\c-"; -SWWM_SHORTVER="\cw1.3pre r1012 \cu(2023-11-20 13:03:00)\c-"; +SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r1013 \cu(Mon 20 Nov 13:29:36 CET 2023)\c-"; +SWWM_SHORTVER="\cw1.3pre r1013 \cu(2023-11-20 13:29:36)\c-"; diff --git a/zscript/menu/swwm_inter.zsc b/zscript/menu/swwm_inter.zsc index 7f8c7a15b..e6a90df88 100644 --- a/zscript/menu/swwm_inter.zsc +++ b/zscript/menu/swwm_inter.zsc @@ -276,7 +276,7 @@ Class SWWMStatScreen : StatusScreen str = StringTable.Localize("$SWWM_INTERTOTAL"); Screen.DrawText(TewiFont,statbasecolor,xx-80*hs,yy,str,DTA_ScaleX,hs,DTA_ScaleY,hs); str = TimeStr(max(cnt_total_time,0)); - Screen.DrawText(TewiFont,statcolor0,xx+80*hs-TewiFont.StringWidth(str)*hs,yy,str,DTA_ScaleX,CleanXFac_1,DTA_ScaleY,hs); + Screen.DrawText(TewiFont,statcolor0,xx+80*hs-TewiFont.StringWidth(str)*hs,yy,str,DTA_ScaleX,hs,DTA_ScaleY,hs); } private void drawSWWMBg()