aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound/audio.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-07 17:28:15 +0000
committerJohannes Schickel2010-01-07 17:28:15 +0000
commit45b6f84ba721d8388290b45d9f09d59d2e3d2068 (patch)
tree77052af377a73f56cccb993428badb3f46453ecc /engines/sci/sound/audio.cpp
parentaa2f55ddc6730e8c3afce61efa241d5f1b1e6b34 (diff)
downloadscummvm-rg350-45b6f84ba721d8388290b45d9f09d59d2e3d2068.tar.gz
scummvm-rg350-45b6f84ba721d8388290b45d9f09d59d2e3d2068.tar.bz2
scummvm-rg350-45b6f84ba721d8388290b45d9f09d59d2e3d2068.zip
Some formatting fixes.
svn-id: r47135
Diffstat (limited to 'engines/sci/sound/audio.cpp')
-rw-r--r--engines/sci/sound/audio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sound/audio.cpp b/engines/sci/sound/audio.cpp
index bfc1fed330..392290853e 100644
--- a/engines/sci/sound/audio.cpp
+++ b/engines/sci/sound/audio.cpp
@@ -163,7 +163,7 @@ static bool readSOLHeader(Common::SeekableReadStream *audioStream, int headerSiz
return true;
}
-static byte* readSOLAudio(Common::SeekableReadStream *audioStream, uint32 &size, byte audioFlags, byte &flags) {
+static byte *readSOLAudio(Common::SeekableReadStream *audioStream, uint32 &size, byte audioFlags, byte &flags) {
byte *buffer;
// Convert the SOL stream flags to our own format
@@ -192,7 +192,7 @@ static byte* readSOLAudio(Common::SeekableReadStream *audioStream, uint32 &size,
return buffer;
}
-Audio::AudioStream* AudioPlayer::getAudioStream(uint32 number, uint32 volume, int *sampleLen) {
+Audio::AudioStream *AudioPlayer::getAudioStream(uint32 number, uint32 volume, int *sampleLen) {
Audio::AudioStream *audioStream = 0;
uint32 size = 0;
byte *data = 0;