summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;