notaz.gp2x.de
/
picodrive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ba60e3
)
sms, fix system setting on config file reading
author
kub
<derkub@gmail.com>
Wed, 20 Oct 2021 19:33:15 +0000
(21:33 +0200)
committer
kub
<derkub@gmail.com>
Wed, 20 Oct 2021 19:33:15 +0000
(21:33 +0200)
platform/common/menu_pico.c
patch
|
blob
|
blame
|
history
diff --git
a/platform/common/menu_pico.c
b/platform/common/menu_pico.c
index
80139c5
..
011df1c
100644
(file)
--- a/
platform/common/menu_pico.c
+++ b/
platform/common/menu_pico.c
@@
-531,7
+531,7
@@
static const char *sms_hardwares[] = { "auto", "Game Gear", "Master System", NUL
static menu_entry e_menu_sms_options[] =
{
- mee_enum ("System", MA_SMSOPT_HARDWARE,
currentConfig.s_
hwSelect, sms_hardwares ),
+ mee_enum ("System", MA_SMSOPT_HARDWARE,
PicoIn.
hwSelect, sms_hardwares ),
};
static int menu_loop_sms_options(int id, int keys)
@@
-540,7
+540,6
@@
static int menu_loop_sms_options(int id, int keys)
me_loop(e_menu_sms_options, &sel);
- PicoIn.hwSelect = currentConfig.s_hwSelect;
return 0;
}