aboutsummaryrefslogtreecommitdiff
path: root/scumm/scummvm.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-09-18 10:56:23 +0000
committerPaweł Kołodziejski2002-09-18 10:56:23 +0000
commite6352e3a32b5382c5f215e3fafa3b28654768f04 (patch)
tree8e5eebfea2528551b3b13cfaea1a5689bb288a67 /scumm/scummvm.cpp
parent462d26937c17961834e4226add1766d273ecd517 (diff)
downloadscummvm-rg350-e6352e3a32b5382c5f215e3fafa3b28654768f04.tar.gz
scummvm-rg350-e6352e3a32b5382c5f215e3fafa3b28654768f04.tar.bz2
scummvm-rg350-e6352e3a32b5382c5f215e3fafa3b28654768f04.zip
moved warning, debug, checkheap to engine
svn-id: r4965
Diffstat (limited to 'scumm/scummvm.cpp')
-rw-r--r--scumm/scummvm.cpp48
1 files changed, 0 insertions, 48 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index e67fbbc311..a3d801c47b 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -1265,54 +1265,6 @@ void NORETURN CDECL error(const char *s, ...)
g_scumm->_system->quit();
}
-void CDECL warning(const char *s, ...)
-{
- char buf[1024];
- va_list va;
-
- va_start(va, s);
- vsprintf(buf, s, va);
- va_end(va);
-
- fprintf(stderr, "WARNING: %s!\n", buf);
-#if defined( USE_WINDBG )
- sprintf(&buf[strlen(buf)], "\n");
- OutputDebugString(buf);
-#endif
-}
-
-uint16 _debugLevel = 1;
-
-void CDECL debug(int level, const char *s, ...)
-{
- char buf[1024];
- va_list va;
-
- if (level > _debugLevel)
- return;
-
- va_start(va, s);
- vsprintf(buf, s, va);
- va_end(va);
- printf("%s\n", buf);
-
-#if defined( USE_WINDBG )
- sprintf(&buf[strlen(buf)], "\n");
- OutputDebugString(buf);
-#endif
-
- fflush(stdout);
-}
-
-void checkHeap()
-{
-#if defined(WIN32)
- if (_heapchk() != _HEAPOK) {
- error("Heap is invalid!");
- }
-#endif
-}
-
ScummDebugger g_debugger;
void Scumm::waitForTimer(int msec_delay) {