aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrichiesams2013-07-24 11:37:45 -0500
committerrichiesams2013-08-04 13:32:37 -0500
commitdf2e78e6f85c4c519e61985febcc3d70085202f0 (patch)
tree4ff102f23aae5e8efe5f9255a028c0b5a94ffd44
parent73f02759f914327732bac2f1a750f3a95efe17ce (diff)
downloadscummvm-rg350-df2e78e6f85c4c519e61985febcc3d70085202f0.tar.gz
scummvm-rg350-df2e78e6f85c4c519e61985febcc3d70085202f0.tar.bz2
scummvm-rg350-df2e78e6f85c4c519e61985febcc3d70085202f0.zip
ZVISION: Remove variable used for debugging purposes
-rw-r--r--engines/zvision/utility.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/utility.cpp b/engines/zvision/utility.cpp
index fa29fe660f..2942a35c81 100644
--- a/engines/zvision/utility.cpp
+++ b/engines/zvision/utility.cpp
@@ -223,7 +223,7 @@ void convertRawToWav(const Common::String &inputFile, ZVision *engine, const Com
output.writeUint32BE(MKTAG('d', 'a', 't', 'a'));
output.writeUint32LE(file.size() * 2);
int16 *buffer = new int16[file.size()];
- int readBytes = audioStream->readBuffer(buffer, file.size());
+ audioStream->readBuffer(buffer, file.size());
output.write(buffer, file.size() * 2);
delete[] buffer;