aboutsummaryrefslogtreecommitdiff
path: root/sound/wave.h
diff options
context:
space:
mode:
authorMax Horn2009-10-14 22:37:05 +0000
committerMax Horn2009-10-14 22:37:05 +0000
commit6a2985ba08fc030d93d625615d7b1b5604fbc98c (patch)
treee25a72cfb73129ded78f0b72269778b7f98fe868 /sound/wave.h
parenta7e6f50ede79a0f7f1ca89ae6900d838cf4fe334 (diff)
downloadscummvm-rg350-6a2985ba08fc030d93d625615d7b1b5604fbc98c.tar.gz
scummvm-rg350-6a2985ba08fc030d93d625615d7b1b5604fbc98c.tar.bz2
scummvm-rg350-6a2985ba08fc030d93d625615d7b1b5604fbc98c.zip
Patch #2834677: Wave/ADPCM Endianness Fixes
svn-id: r45095
Diffstat (limited to 'sound/wave.h')
-rw-r--r--sound/wave.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/wave.h b/sound/wave.h
index cc3b463ba4..951a57b5f9 100644
--- a/sound/wave.h
+++ b/sound/wave.h
@@ -69,11 +69,13 @@ extern bool loadWAVFromStream(
*
* @param stream the SeekableReadStream from which to read the WAVE data
* @param disposeAfterUse whether to delete the stream after use
+ * @param loop whether to loop the sound (infinitely)
* @return a new AudioStream, or NULL, if an error occured
*/
AudioStream *makeWAVStream(
Common::SeekableReadStream *stream,
- bool disposeAfterUse = false);
+ bool disposeAfterUse = false,
+ bool loop = false);
} // End of namespace Audio