diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-07-08 11:44:19 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-07-08 11:44:34 +0200 |
| commit | 1f623d13544bd3d809a44fd9a54f33f91a4ec272 (patch) | |
| tree | 917e4a79037f9d8782a9b15255c3ee0afbd170ae | |
| parent | cdfd83c94cc6f2aab412cbcd686348d51c7e8869 (diff) | |
| download | enigma2-1f623d13544bd3d809a44fd9a54f33f91a4ec272.tar.gz enigma2-1f623d13544bd3d809a44fd9a54f33f91a4ec272.zip | |
lib/gdi/lcd.cpp: remove debug code for dm800se color oled
| -rw-r--r-- | lib/gdi/lcd.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/gdi/lcd.cpp b/lib/gdi/lcd.cpp index a953ef0d..a7dc22db 100644 --- a/lib/gdi/lcd.cpp +++ b/lib/gdi/lcd.cpp @@ -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]; |
