aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound_towns.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/sound_towns.cpp')
-rw-r--r--engines/kyra/sound_towns.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/sound_towns.cpp b/engines/kyra/sound_towns.cpp
index 6f57ebfcbb..ee2ea6b6e4 100644
--- a/engines/kyra/sound_towns.cpp
+++ b/engines/kyra/sound_towns.cpp
@@ -134,7 +134,7 @@ void SoundTowns::selectAudioResourceSet(int set) {
}
}
-bool SoundTowns::hasSoundFile(uint file) {
+bool SoundTowns::hasSoundFile(uint file) const {
if (file < res()->fileListSize)
return (res()->fileList[file] != 0);
return false;
@@ -423,7 +423,7 @@ void SoundPC98::selectAudioResourceSet(int set) {
}
}
-bool SoundPC98::hasSoundFile(uint file) {
+bool SoundPC98::hasSoundFile(uint file) const {
return true;
}
@@ -564,7 +564,7 @@ void SoundTownsPC98_v2::selectAudioResourceSet(int set) {
}
}
-bool SoundTownsPC98_v2::hasSoundFile(uint file) {
+bool SoundTownsPC98_v2::hasSoundFile(uint file) const {
if (file < res()->fileListSize)
return (res()->fileList[file] != 0);
return false;