[Scummvm-git-logs] scummvm master -> 52da75ce3248cc01f42c335ce2f2dbb42636763d
bluegr
noreply at scummvm.org
Mon May 19 00:23:11 UTC 2025
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:
52da75ce32 NANCY: Map new position for SetVolume(), for Nancy 9 and newer games
Commit: 52da75ce3248cc01f42c335ce2f2dbb42636763d
https://github.com/scummvm/scummvm/commit/52da75ce3248cc01f42c335ce2f2dbb42636763d
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2025-05-19T03:22:41+03:00
Commit Message:
NANCY: Map new position for SetVolume(), for Nancy 9 and newer games
Changed paths:
engines/nancy/action/arfactory.cpp
diff --git a/engines/nancy/action/arfactory.cpp b/engines/nancy/action/arfactory.cpp
index 43e5efcc4a6..1e630cd2d89 100644
--- a/engines/nancy/action/arfactory.cpp
+++ b/engines/nancy/action/arfactory.cpp
@@ -285,6 +285,11 @@ ActionRecord *ActionManager::createActionRecord(uint16 type, Common::SeekableRea
return new GoInvViewScene();
case 140:
return new SetVolume();
+ case 149:
+ if (g_nancy->getGameType() >= kGameTypeNancy9) {
+ // This got moved in nancy9
+ return new SetVolume();
+ }
case 150:
return new PlaySound();
case 151:
More information about the Scummvm-git-logs
mailing list