diff options
author | Sven Hesse | 2007-07-30 19:54:51 +0000 |
---|---|---|
committer | Sven Hesse | 2007-07-30 19:54:51 +0000 |
commit | 2dd1dd53000918abba04156845fce2f50182657e (patch) | |
tree | 7f99702115bfc68c2fb2fe90dd7197dcd3a10f63 /engines/scumm | |
parent | 3cddad33738aa7aa2f9ad486a0bc542dd2c2f1cb (diff) | |
download | scummvm-rg350-2dd1dd53000918abba04156845fce2f50182657e.tar.gz scummvm-rg350-2dd1dd53000918abba04156845fce2f50182657e.tar.bz2 scummvm-rg350-2dd1dd53000918abba04156845fce2f50182657e.zip |
Fixing Full Throttle. If I understand the code correctly, this *should* be correct not break anything else. ;)
svn-id: r28338
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/imuse_digi/dimuse_sndmgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp index 625a24ef81..be80cb73e8 100644 --- a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp +++ b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp @@ -136,11 +136,11 @@ void ImuseDigiSndMgr::prepareSound(byte *ptr, SoundDesc *sound) { int32 offset = READ_LE_UINT16(ptr + 20); int16 code = READ_LE_UINT16(ptr + 24); - sound->numRegions = 70; + sound->numRegions = 0; sound->region = new Region[70]; assert(sound->region); - sound->numJumps = 1; + sound->numJumps = 0; sound->jump = new Jump[1]; assert(sound->jump); |