summaryrefslogtreecommitdiff
path: root/apps/gui/option_select.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/option_select.c')
-rw-r--r--apps/gui/option_select.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/option_select.c b/apps/gui/option_select.c
index f954268c18..7f829d26c3 100644
--- a/apps/gui/option_select.c
+++ b/apps/gui/option_select.c
@@ -486,6 +486,7 @@ bool option_screen(const struct settings_list *setting,
486 temp_var = oldvalue = *(bool*)setting->setting?1:0; 486 temp_var = oldvalue = *(bool*)setting->setting?1:0;
487 } 487 }
488 else return false; /* only int/bools can go here */ 488 else return false; /* only int/bools can go here */
489 push_current_activity(ACTIVITY_OPTIONSELECT);
489 gui_synclist_init(&lists, value_setting_get_name_cb, 490 gui_synclist_init(&lists, value_setting_get_name_cb,
490 (void*)setting, false, 1, parent); 491 (void*)setting, false, 1, parent);
491 if (setting->lang_id == -1) 492 if (setting->lang_id == -1)
@@ -566,6 +567,7 @@ bool option_screen(const struct settings_list *setting,
566 if (function == sound_get_fn(SOUND_VOLUME)) 567 if (function == sound_get_fn(SOUND_VOLUME))
567 global_status.last_volume_change = current_tick; 568 global_status.last_volume_change = current_tick;
568 } 569 }
570 pop_current_activity();
569 return false; 571 return false;
570} 572}
571 573