diff options
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/ps2/ps2loader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/ps2/ps2loader.cpp b/backends/platform/ps2/ps2loader.cpp index 8cf6fbc528..9ed4a373b3 100644 --- a/backends/platform/ps2/ps2loader.cpp +++ b/backends/platform/ps2/ps2loader.cpp @@ -39,12 +39,12 @@ //#define __PS2_DEBUG_PLUGINS__ #ifdef __PS2_DEBUG_PLUGINS__ -#define DBG(x,...) sioprintf(x, ## __VA_ARGS__) +#define DBG(x,...) printf(x, ## __VA_ARGS__) #else #define DBG(x,...) #endif -#define seterror(x,...) sioprintf(x, ## __VA_ARGS__) +#define seterror(x,...) printf(x, ## __VA_ARGS__) extern char __plugin_hole_start; // Indicates start of hole in program file for shorts extern char __plugin_hole_end; // Indicates end of hole in program file |