diff options
author | Filippos Karapetis | 2015-07-08 00:28:02 +0300 |
---|---|---|
committer | Filippos Karapetis | 2015-07-08 00:28:02 +0300 |
commit | 94eae644ac1fa2286b3c27a09f8b1b1c95560661 (patch) | |
tree | bfccf65e9fff56727746dbbbe6d7250941691d91 /engines/zvision/sound | |
parent | 6bc2a633a2921d589f8226160d19243a9ee99699 (diff) | |
parent | e32385359839f573e7b55c2aba59390a7dd2c7de (diff) | |
download | scummvm-rg350-94eae644ac1fa2286b3c27a09f8b1b1c95560661.tar.gz scummvm-rg350-94eae644ac1fa2286b3c27a09f8b1b1c95560661.tar.bz2 scummvm-rg350-94eae644ac1fa2286b3c27a09f8b1b1c95560661.zip |
Merge pull request #601 from elQuotho/zvision-polish
Z-Vision polish
Diffstat (limited to 'engines/zvision/sound')
-rw-r--r-- | engines/zvision/sound/zork_raw.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/zvision/sound/zork_raw.cpp b/engines/zvision/sound/zork_raw.cpp index 7bdd4875fc..124235e0e0 100644 --- a/engines/zvision/sound/zork_raw.cpp +++ b/engines/zvision/sound/zork_raw.cpp @@ -33,7 +33,6 @@ #include "zvision/sound/zork_raw.h" #include "zvision/zvision.h" -#include "zvision/detection.h" namespace ZVision { @@ -136,7 +135,8 @@ int RawChunkStream::readBuffer(int16 *buffer, Common::SeekableReadStream *stream return bytesRead; } -const SoundParams RawZorkStream::_zNemSoundParamLookupTable[32] = {{'0', 0x1F40, false, false, false}, +const SoundParams RawZorkStream::_zNemSoundParamLookupTable[32] = { + {'0', 0x1F40, false, false, false}, {'1', 0x1F40, true, false, false}, {'2', 0x1F40, false, false, true}, {'3', 0x1F40, true, false, true}, @@ -170,7 +170,8 @@ const SoundParams RawZorkStream::_zNemSoundParamLookupTable[32] = {{'0', 0x1F40, {'x', 0xAC44, true, true, true} }; -const SoundParams RawZorkStream::_zgiSoundParamLookupTable[24] = {{'4', 0x2B11, false, false, false}, +const SoundParams RawZorkStream::_zgiSoundParamLookupTable[24] = { + {'4', 0x2B11, false, false, false}, {'5', 0x2B11, true, false, false}, {'6', 0x2B11, false, false, true}, {'7', 0x2B11, true, false, true}, |