aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/sound/sound.h
diff options
context:
space:
mode:
authorSven Hesse2012-06-29 19:09:56 +0200
committerSven Hesse2012-07-30 01:24:18 +0200
commit2d05974b5cfef94be9e3edad02e66169a215db4c (patch)
tree6b8e2cc76d90250f29c0bcdecbeb787a67432d71 /engines/gob/sound/sound.h
parentdd35e72a7eefa922eba68dd28e8a18cbb98c0b16 (diff)
downloadscummvm-rg350-2d05974b5cfef94be9e3edad02e66169a215db4c.tar.gz
scummvm-rg350-2d05974b5cfef94be9e3edad02e66169a215db4c.tar.bz2
scummvm-rg350-2d05974b5cfef94be9e3edad02e66169a215db4c.zip
GOB: const correctness in SoundBlaster::playComposition()
Diffstat (limited to 'engines/gob/sound/sound.h')
-rw-r--r--engines/gob/sound/sound.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/sound/sound.h b/engines/gob/sound/sound.h
index 6ad0ec5483..7beffb5dc7 100644
--- a/engines/gob/sound/sound.h
+++ b/engines/gob/sound/sound.h
@@ -60,7 +60,7 @@ public:
int16 frequency, int16 fadeLength = 0);
void blasterStop(int16 fadeLength, SoundDesc *sndDesc = 0);
- void blasterPlayComposition(int16 *composition, int16 freqVal,
+ void blasterPlayComposition(const int16 *composition, int16 freqVal,
SoundDesc *sndDescs = 0, int8 sndCount = kSoundsCount);
void blasterStopComposition();
void blasterRepeatComposition(int32 repCount);