[Scummvm-git-logs] scummvm master -> 945ead40eb6977d5f6790135a98fbb86dc2443f1
bluegr
noreply at scummvm.org
Sat May 2 08:38:19 UTC 2026
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:
945ead40eb NANCY: Fix compilation
Commit: 945ead40eb6977d5f6790135a98fbb86dc2443f1
https://github.com/scummvm/scummvm/commit/945ead40eb6977d5f6790135a98fbb86dc2443f1
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2026-05-02T11:38:09+03:00
Commit Message:
NANCY: Fix compilation
Changed paths:
engines/nancy/nancy.cpp
diff --git a/engines/nancy/nancy.cpp b/engines/nancy/nancy.cpp
index 2adc0922a34..a6e91011fc7 100644
--- a/engines/nancy/nancy.cpp
+++ b/engines/nancy/nancy.cpp
@@ -154,15 +154,15 @@ void NancyEngine::errorString(const char *buf_input, char *buf_output, int buf_o
if (NancySceneState._state == State::Scene::kLoad) {
// Error while loading scene
snprintf(buf_output, buf_output_size, "While loading scene S%u, frame %u, action record %u:\n%s",
- NancySceneState._sceneState.currentScene.sceneID,
- NancySceneState._sceneState.currentScene.frameID,
- NancySceneState._actionManager.getActionRecords().size(),
+ NancySceneState.getSceneInfo().sceneID,
+ NancySceneState.getSceneInfo().frameID,
+ NancySceneState.getActionManager().getActionRecords().size(),
buf_input);
} else {
// Error while running
snprintf(buf_output, buf_output_size, "In current scene S%u, frame %u:\n%s",
- NancySceneState._sceneState.currentScene.sceneID,
- NancySceneState._sceneState.currentScene.frameID,
+ NancySceneState.getSceneInfo().sceneID,
+ NancySceneState.getSceneInfo().frameID,
buf_input);
}
} else {
More information about the Scummvm-git-logs
mailing list