aboutsummaryrefslogtreecommitdiff
path: root/graphics/video/smk_decoder.h
diff options
context:
space:
mode:
authorSylvain Dupont2010-10-09 00:17:55 +0000
committerSylvain Dupont2010-10-09 00:17:55 +0000
commit0fc6572b65908f7d3a7d13537afac67f1cc8a68b (patch)
tree56cab70ec5c570d0915c31caf99a93ccf1bf7415 /graphics/video/smk_decoder.h
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 'graphics/video/smk_decoder.h')
-rw-r--r--graphics/video/smk_decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/video/smk_decoder.h b/graphics/video/smk_decoder.h
index 1745aee7d2..5faeab4343 100644
--- a/graphics/video/smk_decoder.h
+++ b/graphics/video/smk_decoder.h
@@ -69,7 +69,7 @@ public:
PixelFormat getPixelFormat() const { return PixelFormat::createFormatCLUT8(); }
byte *getPalette() { _dirtyPalette = false; return _palette; }
bool hasDirtyPalette() const { return _dirtyPalette; }
- virtual void handleAudioTrack(const byte &track, const uint32 &chunkSize, const uint32 &unpackedSize);
+ virtual void handleAudioTrack(byte track, uint32 chunkSize, uint32 unpackedSize);
protected:
Common::Rational getFrameRate() const { return _frameRate; }