aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2012-11-23 02:50:20 +0100
committerJohannes Schickel2012-11-23 02:50:20 +0100
commitf361a7d624091132d1684907f35b9be693ab38f4 (patch)
tree4c9625abe8b8f31200ced66a8359aaed103ebb37 /engines/kyra/sound.cpp
parentf5a3260ee8b31c7ff5d63fe8d5ac551cc30d14d5 (diff)
downloadscummvm-rg350-f361a7d624091132d1684907f35b9be693ab38f4.tar.gz
scummvm-rg350-f361a7d624091132d1684907f35b9be693ab38f4.tar.bz2
scummvm-rg350-f361a7d624091132d1684907f35b9be693ab38f4.zip
KYRA: Make Sound::hasSoundFile const again.
Diffstat (limited to 'engines/kyra/sound.cpp')
-rw-r--r--engines/kyra/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/sound.cpp b/engines/kyra/sound.cpp
index 7b1b4d82f4..32d175bdb0 100644
--- a/engines/kyra/sound.cpp
+++ b/engines/kyra/sound.cpp
@@ -205,7 +205,7 @@ void MixedSoundDriver::selectAudioResourceSet(int set) {
_sfx->selectAudioResourceSet(set);
}
-bool MixedSoundDriver::hasSoundFile(uint file) {
+bool MixedSoundDriver::hasSoundFile(uint file) const {
return _music->hasSoundFile(file) && _sfx->hasSoundFile(file);
}