aboutsummaryrefslogtreecommitdiff
path: root/scummvm.cpp
diff options
context:
space:
mode:
authorMutwin Kraus2002-03-08 17:19:03 +0000
committerMutwin Kraus2002-03-08 17:19:03 +0000
commit069b021c88e624bcdbbf626916846cde482d67fd (patch)
treec3870e85f8f184babd02f44ae2c9b0ca40d5bf62 /scummvm.cpp
parent8b17d132dba00ce3ec3490f265fba4c9d28264e7 (diff)
downloadscummvm-rg350-069b021c88e624bcdbbf626916846cde482d67fd.tar.gz
scummvm-rg350-069b021c88e624bcdbbf626916846cde482d67fd.tar.bz2
scummvm-rg350-069b021c88e624bcdbbf626916846cde482d67fd.zip
Forgot to delete the #if 0 things, I added while development...
svn-id: r3688
Diffstat (limited to 'scummvm.cpp')
-rw-r--r--scummvm.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/scummvm.cpp b/scummvm.cpp
index 70a46999cd..360391e4cb 100644
--- a/scummvm.cpp
+++ b/scummvm.cpp
@@ -1233,7 +1233,6 @@ void NORETURN CDECL error(const char *s, ...) {
}
void CDECL warning(const char *s, ...) {
-#if 0
char buf[1024];
va_list va;
@@ -1242,11 +1241,9 @@ void CDECL warning(const char *s, ...) {
va_end(va);
fprintf(stderr, "WARNING: %s!\n", buf);
-#endif
}
void CDECL debug(int level, const char *s, ...) {
-#if 0
char buf[1024];
va_list va;
@@ -1258,7 +1255,6 @@ void CDECL debug(int level, const char *s, ...) {
va_end(va);
printf("%s\n", buf);
fflush(stdout);
-#endif
}
void checkHeap() {