aboutsummaryrefslogtreecommitdiff
path: root/source/nds/gui.c
diff options
context:
space:
mode:
authorNebuleon Fumika2013-03-29 05:45:39 -0400
committerNebuleon Fumika2013-03-29 05:45:39 -0400
commitefe43d2f628b636679297e3b3693f778bdbdcccf (patch)
tree9c8564d7dc9a12743f5c681fc2db4d0f59811bce /source/nds/gui.c
parent9a08a7ea4a2b4e36b753367717ddf96f9aaa15ed (diff)
downloadsnes9x2005-efe43d2f628b636679297e3b3693f778bdbdcccf.tar.gz
snes9x2005-efe43d2f628b636679297e3b3693f778bdbdcccf.tar.bz2
snes9x2005-efe43d2f628b636679297e3b3693f778bdbdcccf.zip
Stop the odd disappearing text when moving between files in recently played games.
Diffstat (limited to 'source/nds/gui.c')
-rw-r--r--source/nds/gui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/nds/gui.c b/source/nds/gui.c
index 8b645fe..be95ed1 100644
--- a/source/nds/gui.c
+++ b/source/nds/gui.c
@@ -3694,7 +3694,7 @@ u32 menu(u16 *screen, bool8 FirstInvocation)
{
draw_hscroll_over(current_option_num-1);
ext_pos= strrchr(emu_config.latest_file[current_option_num-1], '/');
- draw_hscroll_init(down_screen_addr, OPTION_TEXT_X, 40 + (current_option_num-1)*27, OPTION_TEXT_SX,
+ hscroll_init(down_screen_addr, OPTION_TEXT_X, 40 + (current_option_num-1)*27, OPTION_TEXT_SX,
COLOR_TRANS, COLOR_INACTIVE_ITEM, ext_pos+1);
}
@@ -3708,7 +3708,7 @@ u32 menu(u16 *screen, bool8 FirstInvocation)
{
draw_hscroll_over(current_option_num-1);
ext_pos= strrchr(emu_config.latest_file[current_option_num-1], '/');
- draw_hscroll_init(down_screen_addr, OPTION_TEXT_X, 40 + (current_option_num-1)*27, OPTION_TEXT_SX,
+ hscroll_init(down_screen_addr, OPTION_TEXT_X, 40 + (current_option_num-1)*27, OPTION_TEXT_SX,
COLOR_TRANS, COLOR_ACTIVE_ITEM, ext_pos+1);
}
@@ -3720,7 +3720,7 @@ u32 menu(u16 *screen, bool8 FirstInvocation)
{
draw_hscroll_over(current_option_num-1);
ext_pos= strrchr(emu_config.latest_file[current_option_num-1], '/');
- draw_hscroll_init(down_screen_addr, OPTION_TEXT_X, 40 + (current_option_num-1)*27, OPTION_TEXT_SX,
+ hscroll_init(down_screen_addr, OPTION_TEXT_X, 40 + (current_option_num-1)*27, OPTION_TEXT_SX,
COLOR_TRANS, COLOR_INACTIVE_ITEM, ext_pos+1);
}
@@ -3733,7 +3733,7 @@ u32 menu(u16 *screen, bool8 FirstInvocation)
{
draw_hscroll_over(current_option_num-1);
ext_pos= strrchr(emu_config.latest_file[current_option_num-1], '/');
- draw_hscroll_init(down_screen_addr, OPTION_TEXT_X, 40 + (current_option_num-1)*27, OPTION_TEXT_SX,
+ hscroll_init(down_screen_addr, OPTION_TEXT_X, 40 + (current_option_num-1)*27, OPTION_TEXT_SX,
COLOR_TRANS, COLOR_ACTIVE_ITEM, ext_pos+1);
}