mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-25 22:07:34 +00:00
DRACI: Fix warning
This commit is contained in:
parent
95f890c350
commit
7e57a87479
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user