[Scummvm-git-logs] scummvm master -> bffae54b943156d5982d9dc08783b6686a5fa063
bluegr
noreply at scummvm.org
Tue Jul 8 20:47:42 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:
bffae54b94 NANCY: Fix puzzle stub for the lighthouse Morse code puzzle in Nancy 9
Commit: bffae54b943156d5982d9dc08783b6686a5fa063
https://github.com/scummvm/scummvm/commit/bffae54b943156d5982d9dc08783b6686a5fa063
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2025-07-08T23:46:37+03:00
Commit Message:
NANCY: Fix puzzle stub for the lighthouse Morse code puzzle in Nancy 9
Changed paths:
engines/nancy/action/puzzle/quizpuzzle.cpp
diff --git a/engines/nancy/action/puzzle/quizpuzzle.cpp b/engines/nancy/action/puzzle/quizpuzzle.cpp
index 19eb91b92ae..a50d3dd880b 100644
--- a/engines/nancy/action/puzzle/quizpuzzle.cpp
+++ b/engines/nancy/action/puzzle/quizpuzzle.cpp
@@ -60,7 +60,10 @@ void QuizPuzzle::execute() {
NancySceneState.setEventFlag(119, g_nancy->_true); // EV_Finished_Chess_Quiz
} else if (sceneId == 4184) {
warning("STUB - Nancy 9 Quiz Puzzle - Lighthouse Morse code");
- NancySceneState.setEventFlag(420, g_nancy->_true); // EV_Solved_Morse_Code
+ SceneChangeDescription scene;
+ scene.sceneID = 4190;
+ NancySceneState.resetStateToInit();
+ NancySceneState.changeScene(scene);
} else {
warning("STUB - Nancy 9 Quiz Puzzle");
}
More information about the Scummvm-git-logs
mailing list