diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-06-16 15:20:06 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-06-16 15:20:06 +0000 |
| commit | 6b18acd5d8ee82d3b16a2ca35daf5be2af5a15cb (patch) | |
| tree | 271004e4a36ec63083cddc49b972a1053e6c93cf | |
| parent | 4a256e163119a9333acd6a6916ec08bf03f9ed3d (diff) | |
| download | rockbox-6b18acd5d8ee82d3b16a2ca35daf5be2af5a15cb.zip rockbox-6b18acd5d8ee82d3b16a2ca35daf5be2af5a15cb.tar.gz rockbox-6b18acd5d8ee82d3b16a2ca35daf5be2af5a15cb.tar.bz2 rockbox-6b18acd5d8ee82d3b16a2ca35daf5be2af5a15cb.tar.xz | |
removed silly debug outputs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4757 a1c6a512-1295-4272-9138-f99709370657
| -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; |