summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-03-04 09:49:38 -0500
committerSolomon Peachy <pizza@shaftnet.org>2021-03-04 09:49:38 -0500
commitbcee95516939f636a676f1521a90bc8a6e1e4692 (patch)
tree1953362c9b27f82a72293198438e5b158ce64e91 /firmware
parenta4a5f5f33fd79ed625c280ac779f41d547846fe8 (diff)
downloadrockbox-bcee95516939f636a676f1521a90bc8a6e1e4692.tar.gz
rockbox-bcee95516939f636a676f1521a90bc8a6e1e4692.zip
rolo: use audio_hard_stop() instead of audio_stop()
This kills the audio thread entirely, including voice stuff. Change-Id: Id6fd58a97d5a57285016351bbfd3e843b2f339f2
Diffstat (limited to 'firmware')
-rw-r--r--firmware/rolo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/rolo.c b/firmware/rolo.c
index f1bcd0718e..10574ea053 100644
--- a/firmware/rolo.c
+++ b/firmware/rolo.c
@@ -237,7 +237,7 @@ int rolo_load(const char* filename)
237 lcd_remote_update(); 237 lcd_remote_update();
238#endif 238#endif
239 239
240 audio_stop(); 240 audio_hard_stop();
241 241
242 /* get the system buffer. release only in case of error, otherwise 242 /* get the system buffer. release only in case of error, otherwise
243 * we don't return anyway */ 243 * we don't return anyway */