diff options
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/gob.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp index 4a968bb4b3..e5b9979147 100644 --- a/engines/gob/gob.cpp +++ b/engines/gob/gob.cpp @@ -316,7 +316,7 @@ DetectedGameList Engine_GOB_detectGames(const FSList &fslist) { uint8 md5sum[16]; char md5str[32 + 1]; - if (Common::md5_file(file->path().c_str(), md5sum, NULL, kMD5FileSizeLimit)) { + if (Common::md5_file(file->path().c_str(), md5sum, kMD5FileSizeLimit)) { for (int i = 0; i < 16; i++) { sprintf(md5str + i * 2, "%02x", (int)md5sum[i]); } @@ -343,7 +343,7 @@ Engine *Engine_GOB_create(OSystem *syst) { uint8 md5sum[16]; char md5str[32 + 1]; - if (Common::md5_file("intro.stk", md5sum, NULL, kMD5FileSizeLimit)) { + if (Common::md5_file("intro.stk", md5sum, kMD5FileSizeLimit)) { for (int j = 0; j < 16; j++) { sprintf(md5str + j*2, "%02x", (int)md5sum[j]); } |