lib/gdi/lcd.cpp: remove debug code for dm800se color oled
authorghost <andreas.monzner@multimedia-labs.de>
Thu, 8 Jul 2010 09:44:19 +0000 (11:44 +0200)
committerghost <andreas.monzner@multimedia-labs.de>
Thu, 8 Jul 2010 09:44:34 +0000 (11:44 +0200)
lib/gdi/lcd.cpp

index a953ef0..a7dc22d 100644 (file)
@@ -196,14 +196,8 @@ void eDBoxLCD::update()
                        }
                        write(lcdfd, raw, 132*8);
                }
-               else if (is_oled == 3) {
-                       FILE *f = fopen("/tmp/bla", "w+");
-                       if (f) {
-                               fwrite(_buffer, _stride * res.height(), 1, f);
-                               fclose(f);
-                       }
+               else if (is_oled == 3)
                        write(lcdfd, _buffer, _stride * res.height());
-               }
                else
                {
                        unsigned char raw[64*64];