[Scummvm-git-logs] scummvm-tools master -> 08c31c42512063f490958db09db5a08cc1c621c5
sdelamarre
noreply at scummvm.org
Sat Sep 30 21:33:08 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://github.com/scummvm/scummvm-tools .
Summary:
08c31c4251 GOB: Fix incorrect display of variables indexes beyond 32768
Commit: 08c31c42512063f490958db09db5a08cc1c621c5
https://github.com/scummvm/scummvm-tools/commit/08c31c42512063f490958db09db5a08cc1c621c5
Author: Simon Delamarre (simon.delamarre14 at gmail.com)
Date: 2023-09-30T23:32:21+02:00
Commit Message:
GOB: Fix incorrect display of variables indexes beyond 32768
Changed paths:
engines/gob/degob_script.cpp
diff --git a/engines/gob/degob_script.cpp b/engines/gob/degob_script.cpp
index 9d55b309..e3ecd4d9 100644
--- a/engines/gob/degob_script.cpp
+++ b/engines/gob/degob_script.cpp
@@ -618,7 +618,7 @@ std::string Script::readVarIndex(uint16 *arg_0, uint16 *arg_4) {
int16 dim;
int16 dimCount;
int16 operation;
- int16 temp;
+ uint16 temp;
operation = readUint8();
More information about the Scummvm-git-logs
mailing list