[Scummvm-git-logs] scummvm master -> 78fdfc605eb0478773f1e4fbedb7ace05f73ea5f
sev-
noreply at scummvm.org
Fri Jul 10 06:14:32 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
78fdfc605e SKY: Skip check for sky.dnr in iBASS
Commit: 78fdfc605eb0478773f1e4fbedb7ace05f73ea5f
https://github.com/scummvm/scummvm/commit/78fdfc605eb0478773f1e4fbedb7ace05f73ea5f
Author: Priyanshu (10b.priyanshu at gmail.com)
Date: 2026-07-10T08:14:28+02:00
Commit Message:
SKY: Skip check for sky.dnr in iBASS
Changed paths:
engines/sky/disk.cpp
diff --git a/engines/sky/disk.cpp b/engines/sky/disk.cpp
index d3483893a83..8e9be3e2b61 100644
--- a/engines/sky/disk.cpp
+++ b/engines/sky/disk.cpp
@@ -166,6 +166,8 @@ Animation *Disk::loadAnim(const char *filename, Graphics::PixelFormat &targetFor
}
bool Disk::fileExists(uint16 fileNr) {
+ if (SkyEngine::isIbass())
+ return (getEntry(fileNr) != NULL);
return (getFileInfo(fileNr) != NULL);
}
More information about the Scummvm-git-logs
mailing list