aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMax Horn2004-09-25 23:26:46 +0000
committerMax Horn2004-09-25 23:26:46 +0000
commit61b7e2155a958c471771da3339a8f1ffcfd633de (patch)
treef8595d035e6c432155410ffcd4db325c5d331b5a /sound
parentdb00315d5ba6d69e8db72d8e0e5631b657825835 (diff)
downloadscummvm-rg350-61b7e2155a958c471771da3339a8f1ffcfd633de.tar.gz
scummvm-rg350-61b7e2155a958c471771da3339a8f1ffcfd633de.tar.bz2
scummvm-rg350-61b7e2155a958c471771da3339a8f1ffcfd633de.zip
Fix doxygen warnings
svn-id: r15277
Diffstat (limited to 'sound')
-rw-r--r--sound/audiostream.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/audiostream.h b/sound/audiostream.h
index bd39c04c2b..bf31d5ae7c 100644
--- a/sound/audiostream.h
+++ b/sound/audiostream.h
@@ -81,12 +81,12 @@ public:
* Tries to load a file by trying all available formats.
* In case of an error, the file handle will be closed, but deleting
* it is still the responsibilty of the caller.
- * @param filename a filename without an extension
- * @param fileHandle a pointer to an existing File instance
+ * @param filename a filename without an extension
+ * @param path an (optional) file path which is passed to File::open()
* @return an Audiostream ready to use in case of success;
* NULL in case of an error (e.g. invalid/nonexisting file)
*/
- static AudioStream* openStreamFile(const char* filename, const char* path=NULL);
+ static AudioStream* openStreamFile(const char *filename, const char *path = NULL);
};
class AppendableAudioStream : public AudioStream {