mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
Forgot to delete the #if 0 things, I added while development...
svn-id: r3688
This commit is contained in:
parent
8b17d132db
commit
069b021c88
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user