diff options
Diffstat (limited to 'engines')
-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; |