mirror of
https://github.com/Oibaf66/uae-wii.git
synced 2024-11-22 10:39:19 +01:00
Save user options if something has changed (and change when the model is set)
This commit is contained in:
parent
cad26b24bd
commit
68981ad0e1
@ -319,6 +319,7 @@ static void amiga_model_options(void)
|
|||||||
}
|
}
|
||||||
/* Cycle-exact or not? */
|
/* Cycle-exact or not? */
|
||||||
set_emulation_accuracy(submenus[1]);
|
set_emulation_accuracy(submenus[1]);
|
||||||
|
prefs_has_changed = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void save_load_state(int which)
|
static void save_load_state(int which)
|
||||||
@ -453,6 +454,9 @@ void gui_display(int shortcut)
|
|||||||
prefs_has_changed = 0;
|
prefs_has_changed = 0;
|
||||||
|
|
||||||
opt = menu_select_title("Main menu", main_menu_messages, submenus);
|
opt = menu_select_title("Main menu", main_menu_messages, submenus);
|
||||||
|
if (opt < 0)
|
||||||
|
return;
|
||||||
|
|
||||||
switch(opt)
|
switch(opt)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
@ -481,6 +485,24 @@ void gui_display(int shortcut)
|
|||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (prefs_has_changed)
|
||||||
|
{
|
||||||
|
char user_options[255];
|
||||||
|
#ifdef OPTIONS_IN_HOME
|
||||||
|
char *home = getenv ("HOME");
|
||||||
|
if (home != NULL && strlen (home) < 240)
|
||||||
|
{
|
||||||
|
strcpy (user_options, home);
|
||||||
|
strcat (user_options, "/");
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
strcat(user_options, OPTIONSFILENAME);
|
||||||
|
strcat(user_options, ".user");
|
||||||
|
|
||||||
|
printf("Saving user options in %s\n", user_options);
|
||||||
|
cfgfile_save(&changed_prefs, user_options, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void gui_message (const char *format,...)
|
void gui_message (const char *format,...)
|
||||||
|
Loading…
Reference in New Issue
Block a user