Skip to content
This repository was archived by the owner on Dec 24, 2018. It is now read-only.

Commit 3c63c55

Browse files
committed
Re-add bug fix
1 parent 1c23dbb commit 3c63c55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gui/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ IS_NIGHTLY := 0
3434

3535
VERSION_MAJOR := 6
3636
VERSION_MINOR := 6
37-
VERSION_MICRO := 0
37+
VERSION_MICRO := 1
3838

3939
#VERSION_MAJOR := $(word 1, $(VERSION_PARTS))
4040
#VERSION_MINOR := $(word 2, $(VERSION_PARTS))

gui/source/settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1658,7 +1658,7 @@ bool settingsMoveCursor(u32 hDown)
16581658
settings.ui.healthsafety = !settings.ui.healthsafety;
16591659
break;
16601660
}
1661-
sfx = sfx_select;
1661+
if (cursor_pos[SUBSCREEN_MODE_FRONTEND2] != 3) sfx = sfx_select;
16621662
} else if ((hDown & KEY_DOWN) && cursor_pos[1] < 6) {
16631663
cursor_pos[1] += 2;
16641664
if (cursor_pos[1] > 5) cursor_pos[1] -= 2;

0 commit comments

Comments
 (0)