#define ZERO  PORTB &= 0xFC
 #define BLACK PORTB |= 0x01
 
+#define DRAW_LOGO
+
 //          -----..-----   ^
 //          | ___        |  |
 // Com RST -| RST    VCC |-`
 
                int t_line = line; // Reducing line-count complexity by half ;)
                t_line = ( line > 312 ) ? line - 312 : line;
-
+#ifdef DRAW_LOGO
                // Draw the logo-image centered vertically
                if ( t_line > 118 && t_line < 118 + (2*testimg_height) )
                {
                                if ( renderLine > ((testimg_height*hres)-1) ) renderLine = 0;
                        } else stretch--;
                }
-       }
+#endif
+               }
        return;
 }