From 582eb13fa2680a60ac5d1770c450fabfbc15a1b5 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 16 Aug 2009 17:38:09 +0000 Subject: Fix for bug #2838568 "AMIGAOS4: Compiler error in audiostream.cpp" svn-id: r43447 --- sound/audiostream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sound') diff --git a/sound/audiostream.cpp b/sound/audiostream.cpp index 8ea72851e2..57d2e097bf 100644 --- a/sound/audiostream.cpp +++ b/sound/audiostream.cpp @@ -277,7 +277,7 @@ int LinearDiskStream::readBuffer(int16 *buffe while (samples > 0 && ((_diskLeft > 0 || _bufferLeft > 0) || (_currentBlock != _audioBlockCount - 1)) ) { // Output samples in the buffer to the output - int len = MIN(samples, _bufferLeft); + int len = MIN(samples, _bufferLeft); samples -= len; _bufferLeft -= len; -- cgit v1.2.3