[Scummvm-git-logs] scummvm master -> 2b668bc5915749f5e9deae1a56abe929394f9eab
Helco
noreply at scummvm.org
Wed Sep 3 07:38:00 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:
2b668bc591 ALCACHOFA: Fix compilation failure on Amiga
Commit: 2b668bc5915749f5e9deae1a56abe929394f9eab
https://github.com/scummvm/scummvm/commit/2b668bc5915749f5e9deae1a56abe929394f9eab
Author: Helco (hermann.noll at hotmail.com)
Date: 2025-09-03T09:37:26+02:00
Commit Message:
ALCACHOFA: Fix compilation failure on Amiga
Changed paths:
engines/alcachofa/script.cpp
diff --git a/engines/alcachofa/script.cpp b/engines/alcachofa/script.cpp
index 9d505bd0217..0b0411f356c 100644
--- a/engines/alcachofa/script.cpp
+++ b/engines/alcachofa/script.cpp
@@ -118,7 +118,7 @@ int32 &Script::variable(const char *name) {
if (_variableNames.tryGetVal(name, index))
return _variables[index];
g_engine->game().unknownVariable(name);
- static int dummy = 0;
+ static int32 dummy = 0;
return dummy;
}
More information about the Scummvm-git-logs
mailing list