Browse Source

Temporary fix for the coverall/dummy run.

Godzil 4 years ago
parent
commit
d37ad746b1
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/os/unix/graphics_dummy.c

+ 3 - 0
src/os/unix/graphics_dummy.c

@@ -138,6 +138,8 @@ int getKeyStatus(int key)
 /* Sync with 60Hz (or try to) */
 void vsync(void)
 {
+#if 0
+    /* For now don't do anything there */
     long WaitTime;
     static long delta = 0;
 
@@ -180,4 +182,5 @@ void vsync(void)
     {
         delta = 0;
     }
+#endif
 }