diff options
author | Strangerke | 2015-06-13 08:18:05 +0200 |
---|---|---|
committer | Strangerke | 2015-06-13 08:18:05 +0200 |
commit | 0f1b756242def7cf09d7f7f4427a3d5122879f1c (patch) | |
tree | 8e5fac8e0d7700e335ae7da4bcf5b3f8ef1579d6 /engines/sherlock | |
parent | 09f7611651aee01c7ab8d212123fd6b4deb30d45 (diff) | |
download | scummvm-rg350-0f1b756242def7cf09d7f7f4427a3d5122879f1c.tar.gz scummvm-rg350-0f1b756242def7cf09d7f7f4427a3d5122879f1c.tar.bz2 scummvm-rg350-0f1b756242def7cf09d7f7f4427a3d5122879f1c.zip |
SHERLOCK: Remove unused variables
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/scalpel/drivers/mt32.cpp | 4 | ||||
-rw-r--r-- | engines/sherlock/tattoo/tattoo_scene.cpp | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/engines/sherlock/scalpel/drivers/mt32.cpp b/engines/sherlock/scalpel/drivers/mt32.cpp index 13e2845fa3..2aac177604 100644 --- a/engines/sherlock/scalpel/drivers/mt32.cpp +++ b/engines/sherlock/scalpel/drivers/mt32.cpp @@ -83,10 +83,6 @@ public: return 1000000 / _baseFreq; } -private: - Common::TimerManager::TimerProc _timerProc; - void *_timerParam; - protected: Common::Mutex _mutex; MidiDriver *_driver; diff --git a/engines/sherlock/tattoo/tattoo_scene.cpp b/engines/sherlock/tattoo/tattoo_scene.cpp index 06391eac46..7fd89085d3 100644 --- a/engines/sherlock/tattoo/tattoo_scene.cpp +++ b/engines/sherlock/tattoo/tattoo_scene.cpp @@ -40,7 +40,6 @@ struct ShapeEntry { ShapeEntry(TattooPerson *person, int yp) : _shape(nullptr), _person(person), _yp(yp), _isAnimation(false) {} ShapeEntry(Object *shape, int yp) : _shape(shape), _person(nullptr), _yp(yp), _isAnimation(false) {} ShapeEntry(int yp) : _shape(nullptr), _person(nullptr), _yp(yp), _isAnimation(true) {} - int personNum; }; typedef Common::List<ShapeEntry> ShapeList; |