diff options
Diffstat (limited to 'scumm/resource.cpp')
-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; |