Remove OpenMenu Bar Check (#3817)

Having it set to just -6 makes the Glitch Tick stay in the same spot in game. when the F1 menu bar is open. At least on Windows
This commit is contained in:
Patrick12115 2024-01-15 10:24:57 -05:00 committed by GitHub
parent bfe2f58feb
commit 31623a93ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3583,7 +3583,7 @@ void Interface_DrawLineupTick(PlayState* play) {
s16 width = 32;
s16 height = 32;
s16 x = -8 + (SCREEN_WIDTH / 2);
s16 y = CVarGetInteger("gOpenMenuBar", 0) ? -4 : -6;
s16 y = -6;
OVERLAY_DISP = Gfx_TextureIA8(OVERLAY_DISP, gEmptyCDownArrowTex, width, height, x, y, width, height, 2 << 10, 2 << 10);