Skip to content
This repository was archived by the owner on Oct 18, 2025. It is now read-only.

Commit 9bc62d9

Browse files
está muy bonito el Controls
1 parent d9e88b9 commit 9bc62d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/funkin/substates/ModsMenuSubState.hx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,17 @@ class ModsMenuSubState extends MusicBeatSubState
9797
CoolUtil.resetEngine();
9898
}
9999

100-
if (Controls.UI_DOWN_P || Controls.UI_UP_P || FlxG.mouse.wheel != 0)
100+
if (Controls.UI_DOWN_P || Controls.UI_UP_P || Controls.MOUSE_WHEEL)
101101
{
102-
if (Controls.UI_DOWN_P || FlxG.mouse.wheel < 0)
102+
if (Controls.UI_DOWN_P || Controls.MOUSE_WHEEL_DOWN)
103103
{
104104
if (selInt >= sprites.members.length - 1)
105105
selInt = 0;
106106
else
107107
selInt++;
108108
}
109109

110-
if (Controls.UI_UP_P || FlxG.mouse.wheel > 0)
110+
if (Controls.UI_UP_P || Controls.MOUSE_WHEEL_UP)
111111
{
112112
if (selInt == 0)
113113
selInt = sprites.members.length - 1;

0 commit comments

Comments
 (0)