[Scummvm-git-logs] scummvm master -> 47fbb31c081512a23adcc1d28a5abe3be0b71bbc
sluicebox
noreply at scummvm.org
Mon Jan 2 09:16:32 UTC 2023
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:
47fbb31c08 SCI: Disable LSL1 speed test
Commit: 47fbb31c081512a23adcc1d28a5abe3be0b71bbc
https://github.com/scummvm/scummvm/commit/47fbb31c081512a23adcc1d28a5abe3be0b71bbc
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2023-01-02T01:16:06-08:00
Commit Message:
SCI: Disable LSL1 speed test
This was missing from: ea48986006a1d85b5302f0c3d2ac828e29a66813
Fixes bug #14004
Changed paths:
engines/sci/engine/script_patches.cpp
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp
index 39b21085e20..a98cc81ab26 100644
--- a/engines/sci/engine/script_patches.cpp
+++ b/engines/sci/engine/script_patches.cpp
@@ -8345,9 +8345,10 @@ static const uint16 larry1PatchBuyApple[] = {
PATCH_END
};
-// script, description, signature patch
+// script, description, signature patch
static const SciScriptPatcherEntry larry1Signatures[] = {
- { true, 300, "Spanish: buy apple from barrel man", 1, larry1SignatureBuyApple, larry1PatchBuyApple },
+ { true, 300, "Spanish: buy apple from barrel man", 1, larry1SignatureBuyApple, larry1PatchBuyApple },
+ { true, 803, "disable speed test", 1, sci01SpeedTestLocalSignature, sci01SpeedTestLocalPatch },
SCI_SIGNATUREENTRY_TERMINATOR
};
More information about the Scummvm-git-logs
mailing list