From d531fd744c3e9a75e1178116d2bb4e94f070fa5a Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Sat, 21 Sep 2024 22:31:11 -0700 Subject: [PATCH] Remove goofy largebutton y offset testing --- src/v_video.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/v_video.cpp b/src/v_video.cpp index 667f1d0c3..520935a78 100644 --- a/src/v_video.cpp +++ b/src/v_video.cpp @@ -2877,7 +2877,7 @@ void V_DrawStringScaled( Draw bt = Draw( FixedToFloat(cx + cxoff) - (bt_inst->x * dupx), - FixedToFloat(cy + cyoff) - ((bt_inst->y + fontspec.button_yofs) * dupy) - (largebutton ? 0*dupy : 0)) + FixedToFloat(cy + cyoff) - ((bt_inst->y + fontspec.button_yofs) * dupy)) .flags(flags); if (largebutton) @@ -2941,7 +2941,7 @@ void V_DrawStringScaled( Draw bt = Draw( FixedToFloat(cx + cxoff) - (bt_inst->x * dupx), - FixedToFloat(cy + cyoff) - ((bt_inst->y + fontspec.button_yofs) * dupy) - (largebutton ? 0*dupy : 0)) + FixedToFloat(cy + cyoff) - ((bt_inst->y + fontspec.button_yofs) * dupy)) .flags(flags); if (largebutton)