aboutsummaryrefslogtreecommitdiff
path: root/queen/sound.h
diff options
context:
space:
mode:
authorMax Horn2004-02-22 14:11:16 +0000
committerMax Horn2004-02-22 14:11:16 +0000
commitaa6ec62e9db78db12912d0e48025241c5d7ef4f7 (patch)
tree0afae2b795f07b9bd1c00dc75af3dca3864dac5f /queen/sound.h
parent6db3a8819e7ef847f6aefac8e40f542cad006481 (diff)
downloadscummvm-rg350-aa6ec62e9db78db12912d0e48025241c5d7ef4f7.tar.gz
scummvm-rg350-aa6ec62e9db78db12912d0e48025241c5d7ef4f7.tar.bz2
scummvm-rg350-aa6ec62e9db78db12912d0e48025241c5d7ef4f7.zip
Patch #885904 (Flac Support) with some tweaks by me
svn-id: r12984
Diffstat (limited to 'queen/sound.h')
-rw-r--r--queen/sound.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/queen/sound.h b/queen/sound.h
index 2bc0ec04c4..bbc48b0cea 100644
--- a/queen/sound.h
+++ b/queen/sound.h
@@ -133,6 +133,15 @@ public:
void sfxPlay(const char *name, bool isSpeech);
};
#endif
+
+#ifdef USE_FLAC
+class FLACSound : public Sound {
+public:
+ FLACSound(SoundMixer *mixer, QueenEngine *vm) : Sound(mixer, vm) {};
+ void sfxPlay(const char *name, bool isSpeech);
+};
+#endif // #ifdef USE_FLAC
+
} // End of namespace Queen
#endif