diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-02-17 23:12:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-02-17 23:12:55 +0000 |
commit | d52ee4c0d6f1f63a57365dbf83a1d6dc0266fc5d (patch) | |
tree | 3d17ba2f0f2f7585e6e84000d663a2ce81281f33 /apps/gui | |
parent | 0c021deb05107afc6826b255feb3b1c512a26ca5 (diff) |
#ifdef
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12369 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r-- | apps/gui/statusbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/statusbar.c b/apps/gui/statusbar.c index d3f4813e37..f1bd58d70f 100644 --- a/apps/gui/statusbar.c +++ b/apps/gui/statusbar.c @@ -273,7 +273,7 @@ void gui_statusbar_draw(struct gui_statusbar * bar, bool force_redraw) #endif { switch (bar->info.repeat) { -#if (AB_REPEAT_ENABLE == 1) +#ifdef AB_REPEAT_ENABLE case REPEAT_AB: gui_statusbar_icon_play_mode(display, Icon_RepeatAB); break; |