summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/peakmeter.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/recorder/peakmeter.c b/apps/recorder/peakmeter.c
index ec80622367..49e74de105 100644
--- a/apps/recorder/peakmeter.c
+++ b/apps/recorder/peakmeter.c
@@ -957,7 +957,8 @@ void peak_meter_draw(struct screen *display, struct meter_scales *scales,
957 for (i = 0; i < db_scale_count; i++) { 957 for (i = 0; i < db_scale_count; i++) {
958 /* The x-coordinates of interesting scale mark points 958 /* The x-coordinates of interesting scale mark points
959 have been calculated before */ 959 have been calculated before */
960 display->drawpixel(scales->db_scale_lcd_coord[i], y + height / 2 - 1); 960 display->drawpixel(x + scales->db_scale_lcd_coord[i],
961 y + height / 2 - 1);
961 } 962 }
962 963
963#ifdef HAVE_RECORDING 964#ifdef HAVE_RECORDING