[Scummvm-git-logs] scummvm master -> 1e833ee164ba555108d359af59fc04020a3c91ae
digitall
noreply at scummvm.org
Sun May 5 16:37:47 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:
1e833ee164 MM: XEEN: Fix Unused Variable GCC Compiler Warning
Commit: 1e833ee164ba555108d359af59fc04020a3c91ae
https://github.com/scummvm/scummvm/commit/1e833ee164ba555108d359af59fc04020a3c91ae
Author: D G Turner (digitall at scummvm.org)
Date: 2024-05-05T17:37:23+01:00
Commit Message:
MM: XEEN: Fix Unused Variable GCC Compiler Warning
Changed paths:
engines/mm/xeen/debugger.cpp
diff --git a/engines/mm/xeen/debugger.cpp b/engines/mm/xeen/debugger.cpp
index 6340eca7330..092cdae54a6 100644
--- a/engines/mm/xeen/debugger.cpp
+++ b/engines/mm/xeen/debugger.cpp
@@ -216,7 +216,7 @@ bool Debugger::cmdLoadOriginal(int argc, const char **argv) {
// Loop through loading the sides' save archives
SaveArchive *archives[2] = { files._xeenSave, files._darkSave };
- CCArchive *cc[2] = { files._xeenCc, files._darkCc };
+ //CCArchive *cc[2] = { files._xeenCc, files._darkCc };
const char *prefix[2] = { "XEEN", "DARK" };
Common::FSNode folder(argv[1]);
More information about the Scummvm-git-logs
mailing list