From 5e6b9ea6ca553cf5bf4d318b258a2c7f9c36b74c Mon Sep 17 00:00:00 2001 From: Nebuleon Fumika Date: Sun, 13 Jan 2013 20:23:45 -0500 Subject: Use the same update method as the rest of the code to display saved-state screenshots on the upper screen. --- source/nds/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/nds') diff --git a/source/nds/gui.c b/source/nds/gui.c index d545edf..b18bbed 100644 --- a/source/nds/gui.c +++ b/source/nds/gui.c @@ -1509,7 +1509,7 @@ int load_state(char* file) fread(up_screen_addr, 1, 256*192*2, fp); fclose(fp); - ds2_flipScreen(UP_SCREEN, 1); + ds2_flipScreen(UP_SCREEN, UP_SCREEN_UPDATE_METHOD); return 0; } @@ -1542,7 +1542,7 @@ int load_game_stat_snapshot(char* file) } fclose(fp); - ds2_flipScreen(UP_SCREEN, 1); + ds2_flipScreen(UP_SCREEN, UP_SCREEN_UPDATE_METHOD); return 0; } -- cgit v1.2.3