aboutsummaryrefslogtreecommitdiff
path: root/engines/lilliput/sound.cpp
diff options
context:
space:
mode:
authorD G Turner2018-07-29 03:56:20 +0100
committerD G Turner2018-07-29 03:56:20 +0100
commitbdb307634f192966536c8ded58d84cb4ad4ee8c2 (patch)
tree1222bec67abb7273fc8f3423353c967ccd589234 /engines/lilliput/sound.cpp
parent733cb7dcc728763b65eab9b11d955e1aa13e16ad (diff)
downloadscummvm-rg350-bdb307634f192966536c8ded58d84cb4ad4ee8c2.tar.gz
scummvm-rg350-bdb307634f192966536c8ded58d84cb4ad4ee8c2.tar.bz2
scummvm-rg350-bdb307634f192966536c8ded58d84cb4ad4ee8c2.zip
LILLIPUT: Remove Unused Engine Pointer from Sound Class.
Since this was unused, it was causing various compiler warnings of the set-but-not-used type. If it is needed later, this code can be restored.
Diffstat (limited to 'engines/lilliput/sound.cpp')
-rw-r--r--engines/lilliput/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lilliput/sound.cpp b/engines/lilliput/sound.cpp
index 9045e47c9a..47048e4117 100644
--- a/engines/lilliput/sound.cpp
+++ b/engines/lilliput/sound.cpp
@@ -48,7 +48,7 @@ static const byte _soundType [40] = {
0, 0, 0, 0, 0, 0, 1, 0, 0, 0
};
-LilliputSound::LilliputSound(LilliputEngine *vm) : _vm(vm) {
+LilliputSound::LilliputSound() {
_unpackedFiles = nullptr;
_unpackedSizes = nullptr;
_fileNumb = 0;