summaryrefslogtreecommitdiff
path: root/apps/recorder/bmp.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2014-01-05 19:37:48 +0100
committerThomas Martitz <kugel@rockbox.org>2014-01-05 19:37:48 +0100
commit2f4a94189da37e226a3a66766ed16726e04b5f36 (patch)
tree928df6b40c422d000ed922b27a0342e800a96ec1 /apps/recorder/bmp.c
parent281d1fadb34242347da379ddeba75d2195148b4c (diff)
downloadrockbox-2f4a94189da37e226a3a66766ed16726e04b5f36.tar.gz
rockbox-2f4a94189da37e226a3a66766ed16726e04b5f36.zip
bmp.c: Undo debug stuff that got in by accident.
Change-Id: Ic37658ab8d81405e28a4097d38785900fd0951cd
Diffstat (limited to 'apps/recorder/bmp.c')
-rw-r--r--apps/recorder/bmp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/recorder/bmp.c b/apps/recorder/bmp.c
index dfd6a0474e..e4eb588eb3 100644
--- a/apps/recorder/bmp.c
+++ b/apps/recorder/bmp.c
@@ -38,7 +38,6 @@
38 ahead by whole lines, or read the next chunk of the current line 38 ahead by whole lines, or read the next chunk of the current line
39*/ 39*/
40 40
41#define ROCKBOX_DEBUG_BMP_LOADER
42#include <stdio.h> 41#include <stdio.h>
43#include <stdlib.h> 42#include <stdlib.h>
44#include <string.h> 43#include <string.h>
@@ -54,7 +53,7 @@
54#include "lcd-remote.h" 53#include "lcd-remote.h"
55#endif 54#endif
56#ifdef ROCKBOX_DEBUG_BMP_LOADER 55#ifdef ROCKBOX_DEBUG_BMP_LOADER
57#define BDEBUGF printf 56#define BDEBUGF DEBUGF
58#else 57#else
59#define BDEBUGF(...) 58#define BDEBUGF(...)
60#endif 59#endif
@@ -775,7 +774,6 @@ int read_bmp_fd(int fd,
775#endif 774#endif
776 .alpha_detected = false, .first_alpha_byte = 0x80, 775 .alpha_detected = false, .first_alpha_byte = 0x80,
777 .order = order, 776 .order = order,
778 .buf = NULL,
779 }; 777 };
780 778
781#if (LCD_DEPTH > 1 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1)) && \ 779#if (LCD_DEPTH > 1 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1)) && \