Remove old warnings, since errors are displayed via load/save interface.

svn-id: r29815
This commit is contained in:
Travis Howell 2007-12-10 09:47:03 +00:00
parent 1af72d0971
commit 3edb401897

View File

@ -1076,7 +1076,6 @@ bool AGOSEngine::saveGame(uint slot, const char *caption) {
f = _saveFileMan->openForSaving(genSaveName(slot));
if (f == NULL) {
warning("saveGame: Failed to save slot %d", slot);
_lockWord &= ~0x100;
return false;
}
@ -1162,7 +1161,6 @@ bool AGOSEngine_Elvira2::loadGame(const char *filename, bool restartMode) {
}
if (f == NULL) {
warning("loadGame: Failed to load %s", filename);
_lockWord &= ~0x100;
return false;
}
@ -1324,7 +1322,6 @@ bool AGOSEngine_Elvira2::saveGame(uint slot, const char *caption) {
f = _saveFileMan->openForSaving(genSaveName(slot));
if (f == NULL) {
warning("saveGame: Failed to save slot %d", slot);
_lockWord &= ~0x100;
return false;
}