aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorSylvain Dupont2010-10-09 00:17:55 +0000
committerSylvain Dupont2010-10-09 00:17:55 +0000
commit0fc6572b65908f7d3a7d13537afac67f1cc8a68b (patch)
tree56cab70ec5c570d0915c31caf99a93ccf1bf7415 /engines
parente11637c7bc41d59dc6a666d3f0399b9a699b2443 (diff)
downloadscummvm-rg350-0fc6572b65908f7d3a7d13537afac67f1cc8a68b.tar.gz
scummvm-rg350-0fc6572b65908f7d3a7d13537afac67f1cc8a68b.tar.bz2
scummvm-rg350-0fc6572b65908f7d3a7d13537afac67f1cc8a68b.zip
VIDEO: Remove useless references in handleAudioTrack function
svn-id: r53091
Diffstat (limited to 'engines')
-rw-r--r--engines/toon/movie.cpp2
-rw-r--r--engines/toon/movie.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/toon/movie.cpp b/engines/toon/movie.cpp
index f01dd90d9c..87a3e878b5 100644
--- a/engines/toon/movie.cpp
+++ b/engines/toon/movie.cpp
@@ -27,7 +27,7 @@
namespace Toon {
-void ToonstruckSmackerDecoder::handleAudioTrack(const byte &track, const uint32 &chunkSize, const uint32 &unpackedSize) {
+void ToonstruckSmackerDecoder::handleAudioTrack(byte track, uint32 chunkSize, uint32 unpackedSize) {
debugC(6, kDebugMovie, "handleAudioTrack(%d, %d, %d)", track, chunkSize, unpackedSize);
if (track == 1 && chunkSize == 4) {
diff --git a/engines/toon/movie.h b/engines/toon/movie.h
index 01da038286..8e1acc4a77 100644
--- a/engines/toon/movie.h
+++ b/engines/toon/movie.h
@@ -34,7 +34,7 @@ namespace Toon {
class ToonstruckSmackerDecoder : public Graphics::SmackerDecoder {
public:
ToonstruckSmackerDecoder(Audio::Mixer *mixer, Audio::Mixer::SoundType soundType = Audio::Mixer::kSFXSoundType);
- void handleAudioTrack(const byte &track, const uint32 &chunkSize, const uint32 &unpackedSize);
+ void handleAudioTrack(byte track, uint32 chunkSize, uint32 unpackedSize);
bool loadFile(const Common::String &filename, int forcedflags) ;
};