Merge commit 'dm/experimental' into vuplus_experimental
[vuplus_dvbapp] / lib / gdi / lcd.cpp
old mode 100644 (file)
new mode 100755 (executable)
index a953ef0..9f43e35
@@ -176,6 +176,9 @@ eDBoxLCD *eDBoxLCD::getInstance()
 
 void eDBoxLCD::update()
 {
+#ifdef BUILD_VUPLUS /* ikseong  */
+       return ;
+#endif
        if (lcdfd >= 0)
        {
                if (!is_oled || is_oled == 2)
@@ -196,14 +199,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];