[Scummvm-cvs-logs] scummvm master -> 848abbee06912655ed1d9c8d663919221fdf4daa
csnover
csnover at users.noreply.github.com
Tue Jun 21 15:33:58 CEST 2016
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
848abbee06 AUDIO: Fix incorrect forward declaration
Commit: 848abbee06912655ed1d9c8d663919221fdf4daa
https://github.com/scummvm/scummvm/commit/848abbee06912655ed1d9c8d663919221fdf4daa
Author: Colin Snover (github.com at zetafleet.com)
Date: 2016-06-21T08:33:50-05:00
Commit Message:
AUDIO: Fix incorrect forward declaration
Changed paths:
audio/decoders/wave.h
diff --git a/audio/decoders/wave.h b/audio/decoders/wave.h
index f5b7fb4..a7fb769 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,
More information about the Scummvm-git-logs
mailing list