diff options
author | Paweł Kołodziejski | 2003-04-07 21:01:49 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-04-07 21:01:49 +0000 |
commit | f9635e6b92e9b2baac8538913f0b165ce81e8a7d (patch) | |
tree | 5e8f5c0f38b569a1863f0089fd154d9f9103c9d7 /scumm | |
parent | 17f53e4c1c73b193345bad68255dbe7e0a2e5ce8 (diff) | |
download | scummvm-rg350-f9635e6b92e9b2baac8538913f0b165ce81e8a7d.tar.gz scummvm-rg350-f9635e6b92e9b2baac8538913f0b165ce81e8a7d.tar.bz2 scummvm-rg350-f9635e6b92e9b2baac8538913f0b165ce81e8a7d.zip |
increased to 16 items
svn-id: r6935
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v5.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index ec70553b19..9cb0c48336 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -1941,7 +1941,7 @@ void Scumm_v5::o5_setVarRange() { } void Scumm_v5::o5_soundKludge() { - int items[15]; + int items[16]; int i; if (_features & GF_SMALL_HEADER) { // Is WaitForSentence in SCUMM V3 @@ -1956,7 +1956,7 @@ void Scumm_v5::o5_soundKludge() { return; } - for (i = 0; i < 15; i++) + for (i = 0; i < 16; i++) items[i] = 0; int num = getWordVararg(items); |