summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/pitchscreen.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/gui/pitchscreen.c b/apps/gui/pitchscreen.c
index 5620de47e8..421ec04676 100644
--- a/apps/gui/pitchscreen.c
+++ b/apps/gui/pitchscreen.c
@@ -746,6 +746,8 @@ int gui_syncpitchscreen_run(void)
746 struct viewport pitch_viewports[NB_SCREENS][PITCH_ITEM_COUNT]; 746 struct viewport pitch_viewports[NB_SCREENS][PITCH_ITEM_COUNT];
747 int max_lines[NB_SCREENS]; 747 int max_lines[NB_SCREENS];
748 748
749 push_current_activity(ACTIVITY_PITCHSCREEN);
750
749#if CONFIG_CODEC == SWCODEC 751#if CONFIG_CODEC == SWCODEC
750 int32_t new_speed = 0, new_stretch; 752 int32_t new_speed = 0, new_stretch;
751 753
@@ -1060,5 +1062,6 @@ int gui_syncpitchscreen_run(void)
1060#if CONFIG_CODEC == SWCODEC 1062#if CONFIG_CODEC == SWCODEC
1061 pcmbuf_set_low_latency(false); 1063 pcmbuf_set_low_latency(false);
1062#endif 1064#endif
1065 pop_current_activity();
1063 return 0; 1066 return 0;
1064} 1067}