diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-02-21 22:30:07 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-02-21 22:30:07 +0000 |
commit | 34455abfe6c93adbdc835be15cd01af8277229aa (patch) | |
tree | 4bfdedbab20e132cf8c6bae23935ce86a75b0bee | |
parent | e7a48977bf62a32f6fd055b72d9035310594a1d5 (diff) | |
download | rockbox-34455abfe6c93adbdc835be15cd01af8277229aa.tar.gz rockbox-34455abfe6c93adbdc835be15cd01af8277229aa.zip |
same treatment like for video plugin: mp3_play_init() removed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4313 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugins/chip8.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c index 533ef037e9..ab3880e023 100644 --- a/apps/plugins/chip8.c +++ b/apps/plugins/chip8.c @@ -555,9 +555,7 @@ bool chip8_run(char* file) is_playing = rb->mp3_is_playing(); /* would we disturb playback? */ if (!is_playing) /* no? then we can make sound */ { /* prepare */ - rb->mp3_play_init(); rb->mp3_play_data(beep, sizeof(beep), callback); - rb->mpeg_sound_set(SOUND_VOLUME, rb->global_settings->volume); } chip8_reset(); |