diff options
author | Max Horn | 2003-03-07 21:54:45 +0000 |
---|---|---|
committer | Max Horn | 2003-03-07 21:54:45 +0000 |
commit | ade9c8033362d673e6dd3456186547ab9d8eea01 (patch) | |
tree | 493c5066f7cfeeb467bdbd50c9760abc7f58bdfd | |
parent | 7e86da474d6b443d1db0402b8adf5d4cc1b713cc (diff) | |
download | scummvm-rg350-ade9c8033362d673e6dd3456186547ab9d8eea01.tar.gz scummvm-rg350-ade9c8033362d673e6dd3456186547ab9d8eea01.tar.bz2 scummvm-rg350-ade9c8033362d673e6dd3456186547ab9d8eea01.zip |
typo
svn-id: r6754
-rw-r--r-- | scumm/script_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 6dfca86d33..b7ee370756 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -2822,7 +2822,7 @@ void Scumm_v6::shuffleArray(int num, int minIdx, int maxIdx) { int val1 = readArray(num, 0, rand1); int val2 = readArray(num, 0, rand2); writeArray(num, 0, rand1, val2); - writeArray(num, 0, rand2, val1)); + writeArray(num, 0, rand2, val1); } } |