mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Remove goofy largebutton y offset testing
This commit is contained in:
parent
5563a06827
commit
d531fd744c
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue