[Scummvm-git-logs] scummvm master -> c36e77d6a3ceab8281a3387971c7d2ad2deced2a
mduggan
noreply at scummvm.org
Sun Nov 10 01:57:38 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
c36e77d6a3 DGDS: EGA and HCG data should be treated as compressed
Commit: c36e77d6a3ceab8281a3387971c7d2ad2deced2a
https://github.com/scummvm/scummvm/commit/c36e77d6a3ceab8281a3387971c7d2ad2deced2a
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2024-11-10T12:56:09+11:00
Commit Message:
DGDS: EGA and HCG data should be treated as compressed
This makes no difference to gameplay becasue we do not directly load from the
SDS.OVL file that contains these blocks, but adding for correctness and to help
with debugging.
Changed paths:
engines/dgds/resource.cpp
diff --git a/engines/dgds/resource.cpp b/engines/dgds/resource.cpp
index 7ab89784423..4d660b8be20 100644
--- a/engines/dgds/resource.cpp
+++ b/engines/dgds/resource.cpp
@@ -248,6 +248,10 @@ bool DgdsChunkReader::isPacked() const {
packed = true;
else if (strcmp(_idStr, "VGA:") == 0)
packed = true;
+ else if (strcmp(_idStr, "EGA:") == 0)
+ packed = true;
+ else if (strcmp(_idStr, "HCG:") == 0)
+ packed = true;
break;
case EX_TDS:
if (0) {
More information about the Scummvm-git-logs
mailing list