diff options
author | Travis Howell | 2005-10-15 00:47:23 +0000 |
---|---|---|
committer | Travis Howell | 2005-10-15 00:47:23 +0000 |
commit | 30b13e12066df635a72cbfaa3122ae5cd230d837 (patch) | |
tree | cd3a44e30d372304dc02a94ea05f2840982413f4 | |
parent | b6425d1cf8990873e5fb05741833722492322d71 (diff) | |
download | scummvm-rg350-30b13e12066df635a72cbfaa3122ae5cd230d837.tar.gz scummvm-rg350-30b13e12066df635a72cbfaa3122ae5cd230d837.tar.bz2 scummvm-rg350-30b13e12066df635a72cbfaa3122ae5cd230d837.zip |
Ooops, remove debug output.
svn-id: r19090
-rw-r--r-- | scumm/resource.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp index 070cd1906e..4ddc571c7a 100644 --- a/scumm/resource.cpp +++ b/scumm/resource.cpp @@ -750,8 +750,6 @@ int ScummEngine::getResourceSize(int type, int idx) { } byte *ScummEngine::getResourceAddress(int type, int idx) { - printf("getResourceAddress: type %d idx %d\n", type, idx); - byte *ptr; CHECK_HEAP @@ -759,8 +757,6 @@ byte *ScummEngine::getResourceAddress(int type, int idx) { if (_heversion >= 80 && type == rtString) idx &= ~0x33539000; - printf("getResourceAddress2: type %d idx %d\n", type, idx); - if (!res.validateResource("getResourceAddress", type, idx)) return NULL; |