summaryrefslogtreecommitdiff
path: root/apps/screens.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/screens.c')
-rw-r--r--apps/screens.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/screens.c b/apps/screens.c
index e259c03407..c9acfa6a05 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id$ 8 * $Id$
9 * 9 *
10 * Copyright (C) 2002 Björn Stenberg 10 * Copyright (C) 2002 Bj�n Stenberg
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
@@ -45,6 +45,7 @@
45#include "debug.h" 45#include "debug.h"
46#include "led.h" 46#include "led.h"
47#include "sound.h" 47#include "sound.h"
48#include "abrepeat.h"
48#include "wps-display.h" 49#include "wps-display.h"
49#if defined(HAVE_LCD_BITMAP) 50#if defined(HAVE_LCD_BITMAP)
50#include "widgets.h" 51#include "widgets.h"
@@ -593,6 +594,12 @@ bool quick_screen(int context, int button)
593 case REPEAT_SHUFFLE: 594 case REPEAT_SHUFFLE:
594 ptr = str(LANG_SHUFFLE); 595 ptr = str(LANG_SHUFFLE);
595 break; 596 break;
597
598#ifdef AB_REPEAT_ENABLE
599 case REPEAT_AB:
600 ptr = str(LANG_REPEAT_AB);
601 break;
602#endif
596 } 603 }
597 604
598 lcd_getstringsize(str(LANG_REPEAT),&w,&h); 605 lcd_getstringsize(str(LANG_REPEAT),&w,&h);