Removed extra exclamation marks in warning() calls as well.

svn-id: r21608
This commit is contained in:
Eugene Sandulenko 2006-04-04 22:21:10 +00:00
parent d292c0ec55
commit 8fa9bd6728
15 changed files with 24 additions and 24 deletions

View file

@ -65,11 +65,11 @@ void KyraEngine::loadGame(const char *fileName) {
if (version >= 2) {
uint32 gameFlags = in->readUint32BE();
if ((gameFlags & GF_FLOPPY) && !(_features & GF_FLOPPY)) {
warning("can not load floppy savefile for this (non floppy) gameversion!");
warning("can not load floppy savefile for this (non floppy) gameversion");
delete in;
return;
} else if ((gameFlags & GF_TALKIE) && !(_features & GF_TALKIE)) {
warning("can not load cdrom savefile for this (non cdrom) gameversion!");
warning("can not load cdrom savefile for this (non cdrom) gameversion");
delete in;
return;
}