some openbios support
[pcsx_rearmed.git] / libpcsxcore / psxcommon.c
index ea655df..fcc3deb 100644 (file)
@@ -26,6 +26,7 @@
 
 PcsxConfig Config;
 boolean NetOpened = FALSE;
+boolean BiosBooted = FALSE;
 
 int Log = 0;
 FILE *emuLog = NULL;
@@ -57,7 +58,12 @@ void EmuUpdate() {
                SysUpdate();
 
        ApplyCheats();
-       pl_frame_limit();
+
+       // reamed hack
+       {
+               extern void pl_frame_limit(void);
+               pl_frame_limit();
+       }
 }
 
 void __Log(char *fmt, ...) {