Add comment

svn-id: r16712
This commit is contained in:
Travis Howell 2005-01-31 00:27:31 +00:00
parent 09d0d6c26d
commit 0c827c0fcf
2 changed files with 3 additions and 6 deletions

View File

@ -1536,16 +1536,13 @@ void ScummEngine_v72he::o72_openFile() {
// HACK Correct incorrect filenames
if (!strcmp((char *)filename,".he3")) {
// For freddicove (Unencrypted)
memset(filename, 0, sizeof(filename));
sprintf((char *)filename, "%s.he3", _gameName.c_str());
debug(0,"New filename %s", filename);
} else if (!strcmp((char *)filename,".he7")) {
memset(filename, 0, sizeof(filename));
sprintf((char *)filename, "%s.he7", _gameName.c_str());
debug(0,"New filename %s", filename);
} else if (!strcmp((char *)filename,".HE9")) {
// For bb2demo
memset(filename, 0, sizeof(filename));
sprintf((char *)filename, "%s.he9", _gameName.c_str());
debug(0,"New filename %s", filename);

View File

@ -1439,7 +1439,7 @@ void ScummEngine_v90he::o90_paletteOps() {
default:
error("o90_paletteOps: Unknown case %d", subOp);
}
debug(0,"o90_paletteOps stub (%d)", subOp);
debug(1,"o90_paletteOps stub (%d)", subOp);
}