summaryrefslogtreecommitdiff
path: root/apps/plugins/wavplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/wavplay.c')
-rw-r--r--apps/plugins/wavplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/wavplay.c b/apps/plugins/wavplay.c
index 6a969f187b..bf06787dd9 100644
--- a/apps/plugins/wavplay.c
+++ b/apps/plugins/wavplay.c
@@ -3345,7 +3345,7 @@ void dma_end_isr(void)
3345 3345
3346void demand_irq_enable(bool on) 3346void demand_irq_enable(bool on)
3347{ 3347{
3348 int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL); 3348 int oldlevel = disable_irq_save();
3349 3349
3350 if(on) 3350 if(on)
3351 { 3351 {
@@ -3357,7 +3357,7 @@ void demand_irq_enable(bool on)
3357 IPRA &= 0xfff0; 3357 IPRA &= 0xfff0;
3358 } 3358 }
3359 3359
3360 set_irq_level(oldlevel); 3360 restore_irq(oldlevel);
3361} 3361}
3362 3362
3363static inline int available(void) 3363static inline int available(void)