aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-02-07 23:27:08 +0000
committerJohannes Schickel2008-02-07 23:27:08 +0000
commit31938bc071d6df12d31f4ad61cf368048cefea06 (patch)
treef119e32f17c6bf1d1c13459fe646e4cf3c9e1aba /engines/kyra/sound.h
parent9b5839082da2ad541200474c1acb5e16a3df076b (diff)
downloadscummvm-rg350-31938bc071d6df12d31f4ad61cf368048cefea06.tar.gz
scummvm-rg350-31938bc071d6df12d31f4ad61cf368048cefea06.tar.bz2
scummvm-rg350-31938bc071d6df12d31f4ad61cf368048cefea06.zip
Fixed kyra3 code.
svn-id: r30822
Diffstat (limited to 'engines/kyra/sound.h')
-rw-r--r--engines/kyra/sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/sound.h b/engines/kyra/sound.h
index ea1eb738b3..426d7b6896 100644
--- a/engines/kyra/sound.h
+++ b/engines/kyra/sound.h
@@ -476,7 +476,7 @@ public:
/**
* Plays a sound.
*
- * @param fileHandle file handle used for playback.
+ * @param stream Data stream used for playback
* It will be deleted when playback is finished
* @param loop true if the sound should loop (endlessly)
* @param fadeIn true if the sound should be faded in volume wise
@@ -484,7 +484,7 @@ public:
*
* @return channel playing the sound
*/
- int playSound(Common::File *fileHandle, bool loop = false, bool fadeIn = false, int channel = -1);
+ int playSound(Common::SeekableReadStream *stream, bool loop = false, bool fadeIn = false, int channel = -1);
/**
* Checks if a given channel is playing a sound.