X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libpcsxcore%2Fsystem.h;h=fe4ab404aa987f735f05e341a990294b8611d647;hb=1e98ada32a77394ce8d14a33d689680764d8e41a;hp=cd1814c28a8520ddc12765eacc62b80da797f828;hpb=d23e64c18b3306f9cd95372745bed7172639720e;p=pcsx_rearmed.git diff --git a/libpcsxcore/system.h b/libpcsxcore/system.h index cd1814c2..fe4ab404 100644 --- a/libpcsxcore/system.h +++ b/libpcsxcore/system.h @@ -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 }