aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorMax Horn2007-03-27 14:12:16 +0000
committerMax Horn2007-03-27 14:12:16 +0000
commit508befd55624edafd6ec70e85b104ec9741a46c6 (patch)
tree80e65e0534ec70f824b96460ef9c7bb3303ddbe4 /engines/kyra
parenta84851174316f841123b26df19a097f692cb7f36 (diff)
downloadscummvm-rg350-508befd55624edafd6ec70e85b104ec9741a46c6.tar.gz
scummvm-rg350-508befd55624edafd6ec70e85b104ec9741a46c6.tar.bz2
scummvm-rg350-508befd55624edafd6ec70e85b104ec9741a46c6.zip
fixed const correctness
svn-id: r26307
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/sound_towns.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/kyra/sound_towns.cpp b/engines/kyra/sound_towns.cpp
index f8c4b5df92..4781ae14c5 100644
--- a/engines/kyra/sound_towns.cpp
+++ b/engines/kyra/sound_towns.cpp
@@ -119,7 +119,7 @@ protected:
int32 samplingRate;
int32 keyOffset;
int32 keyNote;
- int8 *_samples;
+ const int8 *_samples;
} * _snd[8];
struct Env {
EuD_ChannelState state;
@@ -342,7 +342,7 @@ void MidiChannel_EuD_WAVE::controlChange(byte control, byte value) {
void MidiChannel_EuD_WAVE::sysEx_customInstrument(uint32 type, const byte *fmInst) {
if (type == 0x80) {
for (uint8 i = 0; i < 8; i++) {
- byte ** pos = (byte **) fmInst;
+ const byte * const* pos = (const byte * const*) fmInst;
for (uint8 ii = 0; ii < 10; ii++) {
if (_voice->id[i] == *(pos[ii] + 8)) {
if (!_voice->_snd[i])
@@ -355,8 +355,8 @@ void MidiChannel_EuD_WAVE::sysEx_customInstrument(uint32 type, const byte *fmIns
_voice->_snd[i]->loopLength = READ_LE_UINT32(pos[ii] + 20);
_voice->_snd[i]->samplingRate = READ_LE_UINT16(pos[ii] + 24);
_voice->_snd[i]->keyOffset = READ_LE_UINT16(pos[ii] + 26);
- _voice->_snd[i]->keyNote = *(uint8*)(pos[ii] + 28);
- _voice->_snd[i]->_samples = (int8*)(pos[ii] + 32);
+ _voice->_snd[i]->keyNote = *(const uint8*)(pos[ii] + 28);
+ _voice->_snd[i]->_samples = (const int8*)(pos[ii] + 32);
}
}
}
@@ -397,7 +397,7 @@ void MidiChannel_EuD_WAVE::nextTick(int32 *outbuf, int buflen) {
int32 looplength = _voice->_snd[_current]->loopLength;
int32 numsamples = _voice->_snd[_current]->numSamples;
- int8 * samples = _voice->_snd[_current]->_samples;
+ const int8 * samples = _voice->_snd[_current]->_samples;
for (int i = 0; i < buflen; i++) {
if (looplength > 0) {