diff options
| author | Tony Puccinelli | 2010-06-13 08:26:39 +0000 | 
|---|---|---|
| committer | Tony Puccinelli | 2010-06-13 08:26:39 +0000 | 
| commit | 819bbfba0104340f3313c570841e941633b24f9d (patch) | |
| tree | 93f86ea1d2faf0f128577d1cf5c2afad42777036 /backends/platform | |
| parent | fb54698b373b1104989f9b8ce00672511c7ea20b (diff) | |
| download | scummvm-rg350-819bbfba0104340f3313c570841e941633b24f9d.tar.gz scummvm-rg350-819bbfba0104340f3313c570841e941633b24f9d.tar.bz2 scummvm-rg350-819bbfba0104340f3313c570841e941633b24f9d.zip  | |
changed DBG to printf instead of sioprintf
svn-id: r49626
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  | 
