Return 0xCAFE from screen.init() to force display the screen first
[dosdemo] / src / mike.c
index 5ab5276..ed995d9 100644 (file)
@@ -87,7 +87,11 @@ static int init(void)
 
        processNormal();
 
+#ifdef MIKE_PC
+       return 0xCAFE;
+#else
        return 0;
+#endif
 }
 
 static void destroy(void)