diff options
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/staticres.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/staticres.cpp b/engines/kyra/staticres.cpp index cf270942bf..fe4bd2ad71 100644 --- a/engines/kyra/staticres.cpp +++ b/engines/kyra/staticres.cpp @@ -57,7 +57,7 @@ bool checkKyraDat(Common::SeekableReadStream *file) { uint8 digestCalc[16]; file->seek(0, SEEK_SET); - if (!Common::md5_file(*file, digestCalc, size)) + if (!Common::computeStreamMD5(*file, digestCalc, size)) return false; for (int i = 0; i < 16; ++i) |