summaryrefslogtreecommitdiff
path: root/apps/eq_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/eq_menu.c')
-rw-r--r--apps/eq_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/eq_menu.c b/apps/eq_menu.c
index b062dd719d..6c4dde4a78 100644
--- a/apps/eq_menu.c
+++ b/apps/eq_menu.c
@@ -404,7 +404,7 @@ static int draw_eq_slider(struct screen * screen, int x, int y,
404 screen->set_drawmode(DRMODE_SOLID); 404 screen->set_drawmode(DRMODE_SOLID);
405 screen->putsxy(current_x, y + 2, separator); 405 screen->putsxy(current_x, y + 2, separator);
406 current_x += separator_width; 406 current_x += separator_width;
407#ifdef HAVE_REMOTE_LCD 407#if NB_SCREENS > 1
408 if (screen->screen_type == SCREEN_REMOTE) { 408 if (screen->screen_type == SCREEN_REMOTE) {
409 if (mode == GAIN) { 409 if (mode == GAIN) {
410 screen->putsxy(current_x, y + 2, str(LANG_EQUALIZER_BAND_GAIN)); 410 screen->putsxy(current_x, y + 2, str(LANG_EQUALIZER_BAND_GAIN));
@@ -522,7 +522,7 @@ static int draw_eq_sliders(int current_band, enum eq_slider_mode mode)
522 height += draw_eq_slider(&(screens[SCREEN_MAIN]), 2, height, 522 height += draw_eq_slider(&(screens[SCREEN_MAIN]), 2, height,
523 slider_width[SCREEN_MAIN], cutoff, q, gain, 523 slider_width[SCREEN_MAIN], cutoff, q, gain,
524 i == current_band, mode, type); 524 i == current_band, mode, type);
525#ifdef HAVE_REMOTE_LCD 525#if NB_SCREENS > 1
526 if (i == current_band) 526 if (i == current_band)
527 draw_eq_slider(&(screens[SCREEN_REMOTE]), 2, 0, 527 draw_eq_slider(&(screens[SCREEN_REMOTE]), 2, 0,
528 slider_width[SCREEN_REMOTE], cutoff, q, gain,1, mode, type); 528 slider_width[SCREEN_REMOTE], cutoff, q, gain,1, mode, type);