diff options
author | Colin Snover | 2017-09-16 14:32:58 -0500 |
---|---|---|
committer | Colin Snover | 2017-09-16 16:33:09 -0500 |
commit | 4dcf88ef4f77e86bef447da1e77786d425c916b9 (patch) | |
tree | c988317dcddde54c88c1a8d933a172404abfe3bf | |
parent | 3b7e6103647143d916b3ec93acd6d07c621c9a5c (diff) | |
download | scummvm-rg350-4dcf88ef4f77e86bef447da1e77786d425c916b9.tar.gz scummvm-rg350-4dcf88ef4f77e86bef447da1e77786d425c916b9.tar.bz2 scummvm-rg350-4dcf88ef4f77e86bef447da1e77786d425c916b9.zip |
SCI32: Clean-up pass on Rama script patches
* Make alignment of operation comments consistent
-rw-r--r-- | engines/sci/engine/script_patches.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp index af9278f2df..3b275a1914 100644 --- a/engines/sci/engine/script_patches.cpp +++ b/engines/sci/engine/script_patches.cpp @@ -6108,8 +6108,8 @@ static const uint16 ramaBenchmarkSignature[] = { }; static const uint16 ramaBenchmarkPatch[] = { - 0x34, PATCH_UINT16(10000), // ldi 10000 - 0x48, // ret + 0x34, PATCH_UINT16(0x2710), // ldi 10000 + 0x48, // ret PATCH_END }; |