summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-06-16 15:20:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-06-16 15:20:06 +0000
commit6b18acd5d8ee82d3b16a2ca35daf5be2af5a15cb (patch)
tree271004e4a36ec63083cddc49b972a1053e6c93cf
parent4a256e163119a9333acd6a6916ec08bf03f9ed3d (diff)
downloadrockbox-6b18acd5d8ee82d3b16a2ca35daf5be2af5a15cb.tar.gz
rockbox-6b18acd5d8ee82d3b16a2ca35daf5be2af5a15cb.zip
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.c2
-rw-r--r--uisimulator/x11/screenhack.c1
2 files changed, 0 insertions, 3 deletions
diff --git a/uisimulator/x11/lcd-x11.c b/uisimulator/x11/lcd-x11.c
index c02b3e383f..0a400796da 100644
--- a/uisimulator/x11/lcd-x11.c
+++ b/uisimulator/x11/lcd-x11.c
@@ -62,8 +62,6 @@ void lcd_update (void)
62 int cp=0; 62 int cp=0;
63 struct coordinate clearpoints[LCD_WIDTH * LCD_HEIGHT]; 63 struct coordinate clearpoints[LCD_WIDTH * LCD_HEIGHT];
64 64
65 fprintf(stderr, "%04d: lcd_update()\n", counter++);
66
67 for(y=0; y<LCD_HEIGHT; y+=8) { 65 for(y=0; y<LCD_HEIGHT; y+=8) {
68 for(x=0; x<LCD_WIDTH; x++) { 66 for(x=0; x<LCD_WIDTH; x++) {
69 if(lcd_framebuffer[y/8][x] || lcd_framebuffer_copy[y/8][x]) { 67 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 c4d43e5eb7..e15f536d6d 100644
--- a/uisimulator/x11/screenhack.c
+++ b/uisimulator/x11/screenhack.c
@@ -213,7 +213,6 @@ static Bool checkrepeat(time_t prev,
213 time_t now) 213 time_t now)
214{ 214{
215 if(now-prev < 50) { 215 if(now-prev < 50) {
216 DEBUGF("Consider this a button repeat\n");
217 return true; 216 return true;
218 } 217 }
219 return false; 218 return false;