aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Snover2016-06-21 08:33:03 -0500
committerColin Snover2016-06-21 08:33:50 -0500
commit848abbee06912655ed1d9c8d663919221fdf4daa (patch)
tree0f1690119a3ed3c85efeb213a4826b2214891947
parent4495ae3de00bd808399a5e38cdd58fb5d40fef5d (diff)
downloadscummvm-rg350-848abbee06912655ed1d9c8d663919221fdf4daa.tar.gz
scummvm-rg350-848abbee06912655ed1d9c8d663919221fdf4daa.tar.bz2
scummvm-rg350-848abbee06912655ed1d9c8d663919221fdf4daa.zip
AUDIO: Fix incorrect forward declaration
-rw-r--r--audio/decoders/wave.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/decoders/wave.h b/audio/decoders/wave.h
index f5b7fb4d2c..a7fb76978c 100644
--- a/audio/decoders/wave.h
+++ b/audio/decoders/wave.h
@@ -56,7 +56,7 @@ class SeekableReadStream;
namespace Audio {
-class RewindableAudioStream;
+class SeekableAudioStream;
/**
* Try to load a WAVE from the given seekable stream. Returns true if
@@ -82,7 +82,7 @@ extern bool loadWAVFromStream(
*
* @param stream the SeekableReadStream from which to read the WAVE data
* @param disposeAfterUse whether to delete the stream after use
- * @return a new RewindableAudioStream, or NULL, if an error occurred
+ * @return a new SeekableAudioStream, or NULL, if an error occurred
*/
SeekableAudioStream *makeWAVStream(
Common::SeekableReadStream *stream,