aboutsummaryrefslogtreecommitdiff
path: root/sound/decoders
diff options
context:
space:
mode:
authorJohannes Schickel2010-07-21 18:17:51 +0000
committerJohannes Schickel2010-07-21 18:17:51 +0000
commite5e94d45118781902465024fc9a85c7aa0bfd3ce (patch)
treebd33dbdb2c7334bfae212b5fdbf058e8ff4f6883 /sound/decoders
parentfcc9de35e254d62d58aac0c68b314bb2f7b5b6db (diff)
downloadscummvm-rg350-e5e94d45118781902465024fc9a85c7aa0bfd3ce.tar.gz
scummvm-rg350-e5e94d45118781902465024fc9a85c7aa0bfd3ce.tar.bz2
scummvm-rg350-e5e94d45118781902465024fc9a85c7aa0bfd3ce.zip
Strip trailing whitespaces in our common code base.
svn-id: r51094
Diffstat (limited to 'sound/decoders')
-rw-r--r--sound/decoders/mp3.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/decoders/mp3.cpp b/sound/decoders/mp3.cpp
index 732ae58b67..f22eae5102 100644
--- a/sound/decoders/mp3.cpp
+++ b/sound/decoders/mp3.cpp
@@ -349,13 +349,13 @@ int MP3Stream::readBuffer(int16 *buffer, const int numSamples) {
SeekableAudioStream *makeMP3Stream(
Common::SeekableReadStream *stream,
DisposeAfterUse::Flag disposeAfterUse) {
-
+
#if defined(__PSP__)
SeekableAudioStream *s = 0;
-
+
if (Mp3PspStream::isOkToCreateStream())
s = new Mp3PspStream(stream, disposeAfterUse);
-
+
if (!s) // go to regular MAD mp3 stream if ME fails
s = new MP3Stream(stream, disposeAfterUse);
#else