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

Commit 5ca9bff

Browse files
committed
Fix auto-update unofficial bootstrap option not appearing
1 parent 33c9063 commit 5ca9bff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gui/source/settings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,13 +1373,13 @@ bool settingsMoveCursor(u32 hDown)
13731373
case 8: // Enable or disable autoupdate
13741374
if (hDown & (KEY_A | KEY_RIGHT)) {
13751375
settings.ui.autoupdate++;
1376-
if (settings.ui.autoupdate > 1) {
1376+
if (settings.ui.autoupdate > 2) {
13771377
settings.ui.autoupdate = 0;
13781378
}
13791379
} else if (hDown & KEY_LEFT) {
13801380
settings.ui.autoupdate--;
13811381
if (settings.ui.autoupdate < 0) {
1382-
settings.ui.autoupdate = 1;
1382+
settings.ui.autoupdate = 2;
13831383
}
13841384
}
13851385
break;

0 commit comments

Comments
 (0)