aboutsummaryrefslogtreecommitdiff
path: root/scumm/music.h
diff options
context:
space:
mode:
authorMax Horn2003-09-07 16:28:41 +0000
committerMax Horn2003-09-07 16:28:41 +0000
commit17b4ce1c59b9b671aee55b953810874e33539be9 (patch)
tree5b954e7d7726c57b6cc4be6e24e8d522db2bfa4b /scumm/music.h
parent0012f7fa9669939dbdc4b31b5db432d08d2ce276 (diff)
downloadscummvm-rg350-17b4ce1c59b9b671aee55b953810874e33539be9.tar.gz
scummvm-rg350-17b4ce1c59b9b671aee55b953810874e33539be9.tar.bz2
scummvm-rg350-17b4ce1c59b9b671aee55b953810874e33539be9.zip
small tweak (hm, is IMuse::get_sound_active really still needed? or rather, does IMuse::getSoundStatus really have to return an int or can we cast it to boolean safely?)
svn-id: r10067
Diffstat (limited to 'scumm/music.h')
-rw-r--r--scumm/music.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/music.h b/scumm/music.h
index 445e63f022..8529959ec8 100644
--- a/scumm/music.h
+++ b/scumm/music.h
@@ -33,7 +33,7 @@ public:
virtual void startSound(int sound) = 0;
virtual void stopSound(int sound) = 0;
// virtual void stopAllSounds() = 0;
-// virtual int getSoundStatus(int sound) = 0;
+// virtual bool getSoundStatus(int sound) const = 0;
};
#endif