diff options
author | Martin Kiewitz | 2010-08-06 19:13:19 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-08-06 19:13:19 +0000 |
commit | 7b0a5ec099df23c5b6662a09aeb54b9666c07ee1 (patch) | |
tree | a86ec0e70d69877703e7b71178d86116c1ca1295 | |
parent | 753c431937ce3cb080b24c6a79f5e90548bfe431 (diff) | |
download | scummvm-rg350-7b0a5ec099df23c5b6662a09aeb54b9666c07ee1.tar.gz scummvm-rg350-7b0a5ec099df23c5b6662a09aeb54b9666c07ee1.tar.bz2 scummvm-rg350-7b0a5ec099df23c5b6662a09aeb54b9666c07ee1.zip |
SCI: adjusting patch to write 0 instead of 1
patch still worked, but 0 was meant to be there thx to lskovlun to point this out
svn-id: r51796
-rw-r--r-- | engines/sci/engine/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/script.cpp b/engines/sci/engine/script.cpp index 7c5442cc06..0e4104170f 100644 --- a/engines/sci/engine/script.cpp +++ b/engines/sci/engine/script.cpp @@ -176,7 +176,7 @@ const uint16 hoyle4PatchPortFix[] = { 0x38, 0x93, 0x00, // pushi 0093 (selector port) 0x78, // push1 - 0x78, // push1 + 0x76, // push0 0x4a, 0x06, // send 06 (write 0 to that object::port) 0x48, // ret PATCH_END |