diff options
author | Nebuleon Fumika | 2012-12-19 01:37:10 -0500 |
---|---|---|
committer | Nebuleon Fumika | 2012-12-19 01:37:10 -0500 |
commit | dd06ba36fff3fad1eea457026c21f49a01c78604 (patch) | |
tree | 8deb8a2ddee4e2343827c6aafee192df18bdfc48 | |
parent | 65b56543ab4bab2307fe3b29a15f43caaa88dfa1 (diff) | |
download | snes9x2005-dd06ba36fff3fad1eea457026c21f49a01c78604.tar.gz snes9x2005-dd06ba36fff3fad1eea457026c21f49a01c78604.tar.bz2 snes9x2005-dd06ba36fff3fad1eea457026c21f49a01c78604.zip |
Default to Graphics Mode 3, which displays the correct SNES aspect ratio at the cost of some lines at the top and bottom.
-rw-r--r-- | source/nds/gui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/nds/gui.c b/source/nds/gui.c index 07f59d0..4c0a9d7 100644 --- a/source/nds/gui.c +++ b/source/nds/gui.c @@ -4321,8 +4321,8 @@ void init_game_config(void) u32 i; game_config.clock_speed_number = 5; // 396 MHz by default - clock_speed_number = 2; - game_config.graphic = 0; + clock_speed_number = 5; + game_config.graphic = 3; // By default, have a good-looking aspect ratio game_config.gamepad_config_menu = BUTTON_ID_TOUCH; memcpy(game_config.gamepad_config_map, gamepad_config_map_init, sizeof(gamepad_config_map_init)); |