diff options
| -rw-r--r-- | uisimulator/x11/lcd-x11.c | 2 | ||||
| -rw-r--r-- | uisimulator/x11/screenhack.c | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/uisimulator/x11/lcd-x11.c b/uisimulator/x11/lcd-x11.c index c02b3e3..0a40079 100644 --- a/uisimulator/x11/lcd-x11.c +++ b/uisimulator/x11/lcd-x11.c @@ -62,8 +62,6 @@ void lcd_update (void) int cp=0; struct coordinate clearpoints[LCD_WIDTH * LCD_HEIGHT]; - fprintf(stderr, "%04d: lcd_update()\n", counter++); - for(y=0; y<LCD_HEIGHT; y+=8) { for(x=0; x<LCD_WIDTH; x++) { if(lcd_framebuffer[y/8][x] || lcd_framebuffer_copy[y/8][x]) { diff --git a/uisimulator/x11/screenhack.c b/uisimulator/x11/screenhack.c index c4d43e5..e15f536 100644 --- a/uisimulator/x11/screenhack.c +++ b/uisimulator/x11/screenhack.c @@ -213,7 +213,6 @@ static Bool checkrepeat(time_t prev, time_t now) { if(now-prev < 50) { - DEBUGF("Consider this a button repeat\n"); return true; } return false; |