summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFranklin Wei <frankhwei536@gmail.com>2015-02-24 16:35:17 -0500
committerFranklin Wei <frankhwei536@gmail.com>2015-02-24 16:35:17 -0500
commit17ee90ccdb75f5e707604a1f4b28340aab072ec1 (patch)
treea000484e0ae46d37dfe4996aa571082e18460204
parente4108a37263040336ba02df1d69f996cc3b20d0d (diff)
downloadrockbox-17ee90c.tar.gz
rockbox-17ee90c.zip
Fix whitespace in firmware/screendump.c
Change-Id: Id3b4f259a6ae77bde02c040fe67fd21e29e2aa04
-rw-r--r--firmware/screendump.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/firmware/screendump.c b/firmware/screendump.c
index 2916cc1c9f..e27360b137 100644
--- a/firmware/screendump.c
+++ b/firmware/screendump.c
@@ -1,10 +1,10 @@
/***************************************************************************
- * __________ __ ___.
- * Open \______ \ ____ ____ | | _\_ |__ _______ ___
- * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
- * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
- * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
- * \/ \/ \/ \/ \/
+ * __________ __ ___.
+ * Open \______ \ ____ ____ | | _\_ |__ _______ ___
+ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+ * \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2009 by Jens Arnold
@@ -32,7 +32,7 @@
#ifdef HAVE_REMOTE_LCD
#include "lcd-remote.h"
-#endif
+#endif
#if LCD_DEPTH == 16
#define BMP_COMPRESSION 3 /* BI_BITFIELDS */
@@ -144,7 +144,7 @@ void screen_dump(void)
/* BMP image goes bottom up */
for (y = LCD_HEIGHT - 1; y >= 0; y--)
- {
+ {
memset(linebuf, 0, DUMP_BMP_LINESIZE);
#if defined(HAVE_LCD_SPLIT) && (LCD_SPLIT_LINES == 2)
@@ -153,7 +153,7 @@ void screen_dump(void)
write(fd, linebuf, DUMP_BMP_LINESIZE);
write(fd, linebuf, DUMP_BMP_LINESIZE);
}
-#endif
+#endif
dst = linebuf;
#if LCD_DEPTH == 1
@@ -219,7 +219,7 @@ void screen_dump(void)
#elif LCD_DEPTH == 16
dst_end = dst + LCD_WIDTH;
src = FBADDR(0, y);
-
+
do
{
#if (LCD_PIXELFORMAT == RGB565SWAPPED)