aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneonloop2021-04-02 14:18:20 +0000
committerneonloop2021-04-02 14:18:20 +0000
commit08ba753083031def20d86a6b7daff1754a4d3c8a (patch)
tree2d5670a640c237f2737616b96684b051b47af6bb
parentd9c7509a8ed5f190743abeb4ce6702f0549abde3 (diff)
downloadsnesemu-08ba753083031def20d86a6b7daff1754a4d3c8a.tar.gz
snesemu-08ba753083031def20d86a6b7daff1754a4d3c8a.tar.bz2
snesemu-08ba753083031def20d86a6b7daff1754a4d3c8a.zip
Defaults to native resolution and save config on menu exit
-rw-r--r--shell/menu/menu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/menu/menu.c b/shell/menu/menu.c
index 1de8a15..9db4539 100644
--- a/shell/menu/menu.c
+++ b/shell/menu/menu.c
@@ -93,7 +93,7 @@ static void config_load()
option.config_buttons[0][10] = BTN_START;
option.config_buttons[0][11] = BTN_SELECT;
- option.fullscreen = 1;
+ option.fullscreen = 0;
}
}
@@ -530,6 +530,7 @@ void Menu()
}
/* Switch back to emulator core */
+ config_save();
emulator_state = 0;
Set_Video_InGame();
}