diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2011-06-13 07:33:20 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2011-06-13 07:33:20 +0000 |
| commit | 038fc8a66e492927758d0c4fd345779d31a21167 (patch) | |
| tree | 32da8d2dfe35205d8b62f2a21efd736f283522da | |
| parent | 3b04a85245473a6e0f82ee479ef399bc8163a473 (diff) | |
| download | rockbox-038fc8a66e492927758d0c4fd345779d31a21167.zip rockbox-038fc8a66e492927758d0c4fd345779d31a21167.tar.gz rockbox-038fc8a66e492927758d0c4fd345779d31a21167.tar.bz2 rockbox-038fc8a66e492927758d0c4fd345779d31a21167.tar.xz | |
Fix the %cs tag for the pitchscreen and playlist viewer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29997 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/gui/pitchscreen.c | 3 | ||||
| -rw-r--r-- | apps/root_menu.c | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/apps/gui/pitchscreen.c b/apps/gui/pitchscreen.c index 5620de4..421ec04 100644 --- a/apps/gui/pitchscreen.c +++ b/apps/gui/pitchscreen.c @@ -746,6 +746,8 @@ int gui_syncpitchscreen_run(void) struct viewport pitch_viewports[NB_SCREENS][PITCH_ITEM_COUNT]; int max_lines[NB_SCREENS]; + push_current_activity(ACTIVITY_PITCHSCREEN); + #if CONFIG_CODEC == SWCODEC int32_t new_speed = 0, new_stretch; @@ -1060,5 +1062,6 @@ int gui_syncpitchscreen_run(void) #if CONFIG_CODEC == SWCODEC pcmbuf_set_low_latency(false); #endif + pop_current_activity(); return 0; } diff --git a/apps/root_menu.c b/apps/root_menu.c index bee1502..3e53bd9 100644 --- a/apps/root_menu.c +++ b/apps/root_menu.c @@ -339,7 +339,12 @@ static int miscscrn(void * param) static int playlist_view(void * param) { (void)param; - switch (playlist_viewer()) + int val; + + push_current_activity(ACTIVITY_PLAYLISTVIEWER); + val = playlist_viewer(); + pop_current_activity(); + switch (val) { case PLAYLIST_VIEWER_MAINMENU: case PLAYLIST_VIEWER_USB: |