aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorTorbjörn Andersson2008-04-20 19:02:34 +0000
committerTorbjörn Andersson2008-04-20 19:02:34 +0000
commit15b4b62fbbd9ff50a6e46909ebcbc556e9f2ab29 (patch)
tree82fecddd047301860c45aa4e4711f9c27be8ea9a /sound
parentbe975d3da51b86d1db528206370341a56a983879 (diff)
downloadscummvm-rg350-15b4b62fbbd9ff50a6e46909ebcbc556e9f2ab29.tar.gz
scummvm-rg350-15b4b62fbbd9ff50a6e46909ebcbc556e9f2ab29.tar.bz2
scummvm-rg350-15b4b62fbbd9ff50a6e46909ebcbc556e9f2ab29.zip
Fixed comments.
svn-id: r31625
Diffstat (limited to 'sound')
-rw-r--r--sound/audiostream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/audiostream.h b/sound/audiostream.h
index 05c7257a21..ed6b37e51c 100644
--- a/sound/audiostream.h
+++ b/sound/audiostream.h
@@ -106,7 +106,7 @@ AudioStream *makeLinearInputStream(const byte *ptr, uint32 len, int rate, byte f
/**
* An audio stream to which additional data can be appended on-the-fly.
- * Used by SMUSH, iMuseDigital, and the Kyrandia 3 VQA player.
+ * Used by SMUSH, iMuseDigital, the Kyrandia 3 VQA player, etc.
*/
class AppendableAudioStream : public Audio::AudioStream {
public:
@@ -123,7 +123,7 @@ public:
/**
* Mark the stream as finished, that is, signal that no further data
* will be appended to it. Only after this has been done can the
- * AppendableAudioStream ever 'end' (
+ * AppendableAudioStream ever 'end'
*/
virtual void finish() = 0;
};