[Scummvm-git-logs] scummvm master -> 7ab947f7e07cc89f64d291a876d735e4f899f145
bluegr
noreply at scummvm.org
Sat Jul 27 09:54:27 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:
7ab947f7e0 DGDS: Fix typo in game ID check
Commit: 7ab947f7e07cc89f64d291a876d735e4f899f145
https://github.com/scummvm/scummvm/commit/7ab947f7e07cc89f64d291a876d735e4f899f145
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2024-07-27T12:54:24+03:00
Commit Message:
DGDS: Fix typo in game ID check
Changed paths:
engines/dgds/scene.cpp
diff --git a/engines/dgds/scene.cpp b/engines/dgds/scene.cpp
index da614737cbe..ddab4f995d7 100644
--- a/engines/dgds/scene.cpp
+++ b/engines/dgds/scene.cpp
@@ -155,7 +155,7 @@ static Common::String _sceneOpCodeName(SceneOpCode code) {
default:
break;
}
- } else if (DgdsEngine::getInstance()->getGameId() == GID_DRAGON) {
+ } else if (DgdsEngine::getInstance()->getGameId() == GID_HOC) {
switch (code) {
case kSceneOpOpenChinaTankMenu: return "openTankMenu";
case kSceneOpShellGameEnd: return "shellGameEnd";
More information about the Scummvm-git-logs
mailing list