diff options
author | Michael Sparmann <theseven@rockbox.org> | 2010-10-25 12:36:57 +0000 |
---|---|---|
committer | Michael Sparmann <theseven@rockbox.org> | 2010-10-25 12:36:57 +0000 |
commit | 01cdb6a21f0a7737bc51c4997d66bd152db694a8 (patch) | |
tree | cc98be9a47e120f62c3b946d2589f00831b7d178 /firmware/screendump.c | |
parent | 0952848368e403f81541e222f941ec46b0e583a4 (diff) |
Fix screendump on iPod Nano 2G by increasing the usb thread stack size and reducing the stack usage of FAT and storage functions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28356 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/screendump.c')
-rw-r--r-- | firmware/screendump.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/firmware/screendump.c b/firmware/screendump.c index 1876df8ac0..cd9d6a5bd6 100644 --- a/firmware/screendump.c +++ b/firmware/screendump.c @@ -49,20 +49,6 @@ #endif /* LCD_DEPTH > 8 */ #endif /* LCD_DEPTH != 16 */ -#if LCD_DEPTH <= 4 -#define BMP_BPP 4 -#define BMP_LINESIZE ((LCD_WIDTH/2 + 3) & ~3) -#elif LCD_DEPTH <= 8 -#define BMP_BPP 8 -#define BMP_LINESIZE ((LCD_WIDTH + 3) & ~3) -#elif LCD_DEPTH <= 16 -#define BMP_BPP 16 -#define BMP_LINESIZE ((LCD_WIDTH*2 + 3) & ~3) -#else -#define BMP_BPP 24 -#define BMP_LINESIZE ((LCD_WIDTH*3 + 3) & ~3) -#endif - #define BMP_HEADERSIZE (54 + 4 * BMP_NUMCOLORS) #define BMP_DATASIZE (BMP_LINESIZE * (LCD_HEIGHT+LCD_SPLIT_LINES)) #define BMP_TOTALSIZE (BMP_HEADERSIZE + BMP_DATASIZE) @@ -115,7 +101,7 @@ static void (*screen_dump_hook)(int fh) = NULL; void screen_dump(void) { int fd, y; - char filename[MAX_PATH]; + char filename[32]; fb_data *src; #if LCD_DEPTH == 1 |