Skip to content

Commit

Permalink
DRACI: Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Nov 2, 2011
1 parent 95f890c commit 7e57a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/draci/saveload.cpp
Expand Up @@ -41,7 +41,7 @@ bool readSavegameHeader(Common::InSaveFile *in, DraciSavegameHeader &header) {

// Validate the header Id
in->read(saveIdentBuffer, 6);
if (strcmp(saveIdentBuffer, draciIdentString))
if (strcmp(saveIdentBuffer, draciIdentString) != 0)
return false;

header.version = in->readByte();
Expand Down

0 comments on commit 7e57a87

Please sign in to comment.