diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2006-03-19 08:40:31 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2006-03-19 08:40:31 +0000 |
| commit | fc390af3e823addfc336d32b7fb2aaaa7e534d59 (patch) | |
| tree | ec831a1db17adfd172896307e84488432df4e687 /apps/tree.c | |
| parent | 2f438bb2da0ace06a21ce186997d86bc99f372f9 (diff) | |
| download | rockbox-fc390af3e823addfc336d32b7fb2aaaa7e534d59.zip rockbox-fc390af3e823addfc336d32b7fb2aaaa7e534d59.tar.gz rockbox-fc390af3e823addfc336d32b7fb2aaaa7e534d59.tar.bz2 rockbox-fc390af3e823addfc336d32b7fb2aaaa7e534d59.tar.xz | |
Added 'Party Mode': Unstoppable playback
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9114 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
| -rw-r--r-- | apps/tree.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c index 7aa0f32..b11d28f 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -637,8 +637,10 @@ static bool dirbrowse(void) if (*tc.dirfilter < NUM_FILTER_MODES) { /* Stop the music if it is playing */ - if(audio_status()) - audio_stop(); + if(audio_status()) { + if (!global_settings.party_mode) + audio_stop(); + } #if defined(HAVE_CHARGING) && \ (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF) else { |