[Scummvm-cvs-logs] scummvm master -> 820d96f41cdfe22ad504115057548ab33fdca672

Strangerke Strangerke at scummvm.org
Mon Mar 10 23:12:07 CET 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
820d96f41c CGE: Fix 2 more obsolete debug messages


Commit: 820d96f41cdfe22ad504115057548ab33fdca672
    https://github.com/scummvm/scummvm/commit/820d96f41cdfe22ad504115057548ab33fdca672
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-03-10T23:09:53+01:00

Commit Message:
CGE: Fix 2 more obsolete debug messages

Changed paths:
    engines/cge/fileio.cpp



diff --git a/engines/cge/fileio.cpp b/engines/cge/fileio.cpp
index 4fcf9f8..bab01b6 100644
--- a/engines/cge/fileio.cpp
+++ b/engines/cge/fileio.cpp
@@ -118,7 +118,7 @@ uint16 ResourceManager::read(byte *buf, uint16 length) {
 }
 
 BtPage *ResourceManager::getPage(int level, uint16 pageId) {
-	debugC(1, kCGEDebugFile, "IoHand::getPage(%d, %d)", level, pageId);
+	debugC(1, kCGEDebugFile, "ResourceManager::getPage(%d, %d)", level, pageId);
 
 	if (_buff[level]._pageNo != pageId) {
 		int32 pos = pageId * kBtSize;
@@ -142,7 +142,7 @@ BtPage *ResourceManager::getPage(int level, uint16 pageId) {
 }
 
 BtKeypack *ResourceManager::find(const char *key) {
-	debugC(1, kCGEDebugFile, "IoHand::find(%s)", key);
+	debugC(1, kCGEDebugFile, "ResourceManager::find(%s)", key);
 
 	int lev = 0;
 	uint16 nxt = kBtValRoot;






More information about the Scummvm-git-logs mailing list