aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound.h
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.h
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.h')
-rw-r--r--engines/kyra/sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/sound.h b/engines/kyra/sound.h
index 3418c8a4aa..057eb48b64 100644
--- a/engines/kyra/sound.h
+++ b/engines/kyra/sound.h
@@ -128,7 +128,7 @@ public:
* @param track track number
* @return true if available, false otherwise
*/
- virtual bool hasSoundFile(uint file) = 0;
+ virtual bool hasSoundFile(uint file) const = 0;
/**
* Load a specifc sound file for use of
@@ -309,7 +309,7 @@ public:
virtual void initAudioResourceInfo(int set, void *info);
virtual void selectAudioResourceSet(int set);
- virtual bool hasSoundFile(uint file);
+ virtual bool hasSoundFile(uint file) const;
virtual void loadSoundFile(uint file);
virtual void loadSoundFile(Common::String file);