aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/sound.h
diff options
context:
space:
mode:
authorMax Horn2007-08-16 18:42:28 +0000
committerMax Horn2007-08-16 18:42:28 +0000
commit47b2f533f0a5e2e70759b90f798c66d3b763a0d9 (patch)
tree16b4944b09df2b7794192f52ea73198b9a18e485 /engines/agi/sound.h
parentf0f46113ee103e922ecde5f32652a482899c7e61 (diff)
downloadscummvm-rg350-47b2f533f0a5e2e70759b90f798c66d3b763a0d9.tar.gz
scummvm-rg350-47b2f533f0a5e2e70759b90f798c66d3b763a0d9.tar.bz2
scummvm-rg350-47b2f533f0a5e2e70759b90f798c66d3b763a0d9.zip
Fixed some warning
svn-id: r28638
Diffstat (limited to 'engines/agi/sound.h')
-rw-r--r--engines/agi/sound.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/agi/sound.h b/engines/agi/sound.h
index 058f4ab67e..80ba3f31e8 100644
--- a/engines/agi/sound.h
+++ b/engines/agi/sound.h
@@ -207,6 +207,7 @@ class SoundMgr;
class AgiSound {
public:
AgiSound(SoundMgr &manager) : _manager(manager), _isPlaying(false), _isValid(false) {}
+ virtual ~AgiSound() {}
virtual void play() { _isPlaying = true; }
virtual void stop() { _isPlaying = false; }
virtual bool isPlaying() { return _isPlaying; }