summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/bookmark.c2
-rw-r--r--apps/settings.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 1352b2a708..aa5dce6bc9 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -680,7 +680,7 @@ static void display_bookmark(const char* bookmark,
680 /* bookmark shuffle and repeat states*/ 680 /* bookmark shuffle and repeat states*/
681 switch (repeat_mode) 681 switch (repeat_mode)
682 { 682 {
683#if (AB_REPEAT_ENABLE == 1) 683#ifdef AB_REPEAT_ENABLE
684 case REPEAT_AB: 684 case REPEAT_AB:
685 statusbar_icon_play_mode(Icon_RepeatAB); 685 statusbar_icon_play_mode(Icon_RepeatAB);
686 break; 686 break;
diff --git a/apps/settings.h b/apps/settings.h
index 3605e7e777..35eed906fb 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -143,7 +143,7 @@ enum
143 REPEAT_ALL, 143 REPEAT_ALL,
144 REPEAT_ONE, 144 REPEAT_ONE,
145 REPEAT_SHUFFLE, 145 REPEAT_SHUFFLE,
146#if (AB_REPEAT_ENABLE == 1) 146#ifdef AB_REPEAT_ENABLE
147 REPEAT_AB, 147 REPEAT_AB,
148#endif 148#endif
149 NUM_REPEAT_MODES 149 NUM_REPEAT_MODES