summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-08-07 21:37:55 +0000
committerThomas Martitz <kugel@rockbox.org>2010-08-07 21:37:55 +0000
commit2113e22c4691728edf23768e59a0bde55d80a367 (patch)
treea1d7247f843139ad8e85e450d4f4eeccf9e1c64d /apps
parentca4439ff65bdc93fc44f4cc1be52aab50217ce78 (diff)
downloadrockbox-2113e22c4691728edf23768e59a0bde55d80a367.tar.gz
rockbox-2113e22c4691728edf23768e59a0bde55d80a367.zip
Correct flawed search&replace.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27747 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-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