summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/menu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/menu.c b/apps/menu.c
index e6afec2d14..5b8b121b1a 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -381,7 +381,7 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
381#endif 381#endif
382 while (!done) 382 while (!done)
383 { 383 {
384 int new_old_audio_statusus; 384 int new_audio_status;
385 redraw_lists = false; 385 redraw_lists = false;
386 if (!hide_theme) 386 if (!hide_theme)
387 { 387 {
@@ -393,12 +393,12 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
393 list_do_action_timeout(&lists, HZ)); 393 list_do_action_timeout(&lists, HZ));
394 394
395 /* query audio status to see if it changed */ 395 /* query audio status to see if it changed */
396 new_old_audio_statusus = audio_status(); 396 new_audio_status = audio_status();
397 if (old_audio_status != new_old_audio_statusus) 397 if (old_audio_status != new_audio_status)
398 { /* force a redraw if anything changed the audio status 398 { /* force a redraw if anything changed the audio status
399 * from outside */ 399 * from outside */
400 redraw_lists = true; 400 redraw_lists = true;
401 old_audio_status = new_old_audio_statusus; 401 old_audio_status = new_audio_status;
402 } 402 }
403 /* HZ so the status bar redraws corectly */ 403 /* HZ so the status bar redraws corectly */
404 404