aboutsummaryrefslogtreecommitdiff
path: root/engines/sword2/music.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword2/music.cpp')
-rw-r--r--engines/sword2/music.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/sword2/music.cpp b/engines/sword2/music.cpp
index dcb1fb9e75..bfa65ba248 100644
--- a/engines/sword2/music.cpp
+++ b/engines/sword2/music.cpp
@@ -165,8 +165,6 @@ static Audio::AudioStream *getAudioStream(SoundFileHandle *fh, const char *base,
CLUInputStream::CLUInputStream(Common::File *file, int size)
: _file(file), _firstTime(true), _bufferEnd(_outbuf + BUFFER_SIZE) {
- _file->incRef();
-
// Determine the end position.
_file_pos = _file->pos();
_end_pos = _file_pos + size;
@@ -176,7 +174,6 @@ CLUInputStream::CLUInputStream(Common::File *file, int size)
}
CLUInputStream::~CLUInputStream() {
- _file->decRef();
}
int CLUInputStream::readBuffer(int16 *buffer, const int numSamples) {