diff options
author | Nebuleon Fumika | 2013-01-20 22:22:24 -0500 |
---|---|---|
committer | Nebuleon Fumika | 2013-01-20 22:22:24 -0500 |
commit | 80f2e1304398cff0a0b3584c858353e53c5b5d35 (patch) | |
tree | 2bf47ac1d49e2da4d35acfa63153c34ca976f201 /source | |
parent | 656eeab87fb676f5e1c9322bf7e468e6c156d64c (diff) | |
download | snes9x2005-80f2e1304398cff0a0b3584c858353e53c5b5d35.tar.gz snes9x2005-80f2e1304398cff0a0b3584c858353e53c5b5d35.tar.bz2 snes9x2005-80f2e1304398cff0a0b3584c858353e53c5b5d35.zip |
Fix a regression with touching "recently played games".
Diffstat (limited to 'source')
-rw-r--r-- | source/nds/gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nds/gui.c b/source/nds/gui.c index 27e766d..9bd369c 100644 --- a/source/nds/gui.c +++ b/source/nds/gui.c @@ -3777,7 +3777,7 @@ u32 menu(u16 *screen) if (next_option_num > current_menu->num_options) break; - struct _MENU_OPTION_TYPE *next_option = current_menu->options + current_option_num; + struct _MENU_OPTION_TYPE *next_option = current_menu->options + next_option_num; if(next_option -> option_type & HIDEN_TYPE) break; |