[Scummvm-git-logs] scummvm master -> e1d41e84cce0512f5e32b72ffc5b7288184f3c33
mduggan
noreply at scummvm.org
Sun Jul 7 06:20:35 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:
e1d41e84cc DGDS: Fix compile error from bad merge
Commit: e1d41e84cce0512f5e32b72ffc5b7288184f3c33
https://github.com/scummvm/scummvm/commit/e1d41e84cce0512f5e32b72ffc5b7288184f3c33
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2024-07-07T16:20:18+10:00
Commit Message:
DGDS: Fix compile error from bad merge
Changed paths:
engines/dgds/request.cpp
diff --git a/engines/dgds/request.cpp b/engines/dgds/request.cpp
index 018d8be38ac..ab39930d85b 100644
--- a/engines/dgds/request.cpp
+++ b/engines/dgds/request.cpp
@@ -790,7 +790,7 @@ void RequestData::fillBackground(Graphics::ManagedSurface *dst, uint16 x, uint16
}
} else {
byte bgCol = DragonFallbackColors[0];
- if (engine->getGameId() == GID_CHINA)
+ if (engine->getGameId() == GID_HOC)
bgCol = ChinaBakgroundColor;
dst->fillRect(Common::Rect(Common::Point(x, y), width, height), bgCol);
}
More information about the Scummvm-git-logs
mailing list