cdrom: fix a copy-paste mistake
[pcsx_rearmed.git] / libpcsxcore / system.h
index cd1814c..fe4ab40 100644 (file)
@@ -32,10 +32,12 @@ void *SysLoadLibrary(const char *lib);      // Loads Library
 void *SysLoadSym(void *lib, const char *sym);  // Loads Symbol from Library
 const char *SysLibError();                             // Gets previous error loading sysbols
 void SysCloseLibrary(void *lib);               // Closes Library
-void SysUpdate();                                              // Called on VBlank (to update i.e. pads)
 void SysRunGui();                                              // Returns to the Gui
 void SysClose();                                               // Close mem and plugins
-void SysDLog(const char *fmt, ...);            // Prints debug-level logs
+
+// log if the game does something we don't handle (well)
+//#define log_unhandled printf
+#define log_unhandled(...)
 
 #ifdef __cplusplus
 }