summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-04-23 18:49:24 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-04-23 18:49:24 +0000
commit4ccffb658931503b3badb70a99d72a0cfb9834b1 (patch)
treed63f4594f93bb98a74268c73ac9e2847f3879e8b
parent583821bc323f4a49abd9f295a6eea01bb0f4473b (diff)
downloadrockbox-4ccffb658931503b3badb70a99d72a0cfb9834b1.tar.gz
rockbox-4ccffb658931503b3badb70a99d72a0cfb9834b1.zip
remove debug output
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3593 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/x11/lcd-x11.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/uisimulator/x11/lcd-x11.c b/uisimulator/x11/lcd-x11.c
index 69880f12ac..023f06240c 100644
--- a/uisimulator/x11/lcd-x11.c
+++ b/uisimulator/x11/lcd-x11.c
@@ -113,9 +113,10 @@ void lcd_update_rect(int x_start, int y_start,
113 struct coordinate points[LCD_WIDTH * LCD_HEIGHT]; 113 struct coordinate points[LCD_WIDTH * LCD_HEIGHT];
114 struct coordinate clearpoints[LCD_WIDTH * LCD_HEIGHT]; 114 struct coordinate clearpoints[LCD_WIDTH * LCD_HEIGHT];
115 115
116#if 0
116 fprintf(stderr, "%04d: lcd_update_rect(%d, %d, %d, %d)\n", 117 fprintf(stderr, "%04d: lcd_update_rect(%d, %d, %d, %d)\n",
117 counter++, x_start, y_start, width, height); 118 counter++, x_start, y_start, width, height);
118 119#endif
119 /* The Y coordinates have to work on even 8 pixel rows */ 120 /* The Y coordinates have to work on even 8 pixel rows */
120 ymax = (yline + height)/8; 121 ymax = (yline + height)/8;
121 yline /= 8; 122 yline /= 8;