Remove goofy largebutton y offset testing

This commit is contained in:
Antonio Martinez 2024-09-21 22:31:11 -07:00 committed by AJ Martinez
parent 5563a06827
commit d531fd744c

View file

@ -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)