aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ps2/ps2debug.cpp
diff options
context:
space:
mode:
authorMax Lingua2014-01-23 18:15:42 -0500
committerMax Lingua2014-01-23 18:34:58 -0500
commit5e36716be5dc55d2fbf0d417b03e065bd09f7946 (patch)
treec46d9dbf2281eeb303014d9dc5a468ffb67f6457 /backends/platform/ps2/ps2debug.cpp
parent6487c362a1909b10886ee95f4f91109a7808fd33 (diff)
downloadscummvm-rg350-5e36716be5dc55d2fbf0d417b03e065bd09f7946.tar.gz
scummvm-rg350-5e36716be5dc55d2fbf0d417b03e065bd09f7946.tar.bz2
scummvm-rg350-5e36716be5dc55d2fbf0d417b03e065bd09f7946.zip
PS2: Made it quieter unless -DLOGORRHEIC is set
Diffstat (limited to 'backends/platform/ps2/ps2debug.cpp')
-rw-r--r--backends/platform/ps2/ps2debug.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/platform/ps2/ps2debug.cpp b/backends/platform/ps2/ps2debug.cpp
index 300e18316f..3e689f53e1 100644
--- a/backends/platform/ps2/ps2debug.cpp
+++ b/backends/platform/ps2/ps2debug.cpp
@@ -22,10 +22,10 @@
#include "ps2debug.h"
#include <stdio.h>
-#include <stdlib.h>
#include <sio.h>
void sioprintf(const char *zFormat, ...) {
+ #if 0 // doesn't seem to work with ps2link...
va_list ap;
char resStr[2048];
@@ -43,4 +43,5 @@ void sioprintf(const char *zFormat, ...) {
sio_putc(*pos);
pos++;
}
+ #endif
}