Add debug-level log function
authornegativeExponent <negativeExponent@users.noreply.github.com>
Sun, 2 Aug 2020 23:58:26 +0000 (07:58 +0800)
committernegativeExponent <negativeExponent@users.noreply.github.com>
Mon, 3 Aug 2020 00:08:33 +0000 (08:08 +0800)
frontend/libretro.c
libpcsxcore/system.h

index 50392a9..a8895d8 100644 (file)
@@ -2885,3 +2885,17 @@ void SysPrintf(const char *fmt, ...)
    if (log_cb)
       log_cb(RETRO_LOG_INFO, "%s", msg);
 }
+
+/* Prints debug-level logs */
+void SysDLog(const char *fmt, ...)
+{
+   va_list list;
+   char msg[512];
+
+   va_start(list, fmt);
+   vsprintf(msg, fmt, list);
+   va_end(list);
+
+   if (log_cb)
+      log_cb(RETRO_LOG_DEBUG, "%s", msg);
+}
index c869fdf..cd1814c 100644 (file)
@@ -35,6 +35,7 @@ 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
 
 #ifdef __cplusplus
 }