--- uae/src/tui.c 2018/04/24 17:02:07 1.1.1.10 +++ uae/src/tui.c 2018/04/24 17:05:45 1.1.1.11 @@ -53,7 +53,7 @@ static void save_settings (void) tui_backup_optionsfile (); f = fopen (optionsfile, "w"); if (f == NULL) { - fprintf (stderr, "Error saving options file!\n"); + write_log ("Error saving options file!\n"); return; } save_options (f, &currprefs); @@ -720,3 +720,11 @@ int gui_update (void) { return 0; } + +void gui_lock (void) +{ +} + +void gui_unlock (void) +{ +}