diff options
author | Thomas Martitz <kugel@rockbox.org> | 2014-01-05 19:37:48 +0100 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2014-01-05 19:37:48 +0100 |
commit | 2f4a94189da37e226a3a66766ed16726e04b5f36 (patch) | |
tree | 928df6b40c422d000ed922b27a0342e800a96ec1 /apps | |
parent | 281d1fadb34242347da379ddeba75d2195148b4c (diff) |
bmp.c: Undo debug stuff that got in by accident.
Change-Id: Ic37658ab8d81405e28a4097d38785900fd0951cd
Diffstat (limited to 'apps')
-rw-r--r-- | apps/recorder/bmp.c | 4 |
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 @@ ahead by whole lines, or read the next chunk of the current line */ -#define ROCKBOX_DEBUG_BMP_LOADER #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -54,7 +53,7 @@ #include "lcd-remote.h" #endif #ifdef ROCKBOX_DEBUG_BMP_LOADER -#define BDEBUGF printf +#define BDEBUGF DEBUGF #else #define BDEBUGF(...) #endif @@ -775,7 +774,6 @@ int read_bmp_fd(int fd, #endif .alpha_detected = false, .first_alpha_byte = 0x80, .order = order, - .buf = NULL, }; #if (LCD_DEPTH > 1 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1)) && \ |