Up and down should move along 7 entries, not 4

This commit is contained in:
Adubbz 2018-02-23 09:54:01 +11:00 committed by plutoo
parent 50abc932f9
commit ad52da6278

View File

@ -81,8 +81,8 @@ bool menuUpdate(void) {
if (down & KEY_LEFT) move--;
if (down & KEY_RIGHT) move++;
if (down & KEY_DOWN) move-=4;
if (down & KEY_UP) move+=4;
if (down & KEY_DOWN) move-=7;
if (down & KEY_UP) move+=7;
int newEntry = menu->curEntry + move;
if (newEntry < 0) newEntry = 0;