diff options
Diffstat (limited to 'sound/audiostream.h')
-rw-r--r-- | sound/audiostream.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/audiostream.h b/sound/audiostream.h index bf31d5ae7c..b616e9b565 100644 --- a/sound/audiostream.h +++ b/sound/audiostream.h @@ -82,11 +82,10 @@ public: * 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 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); }; class AppendableAudioStream : public AudioStream { |