From 43fb9ebb1b188578e272885a318bc57abed42de9 Mon Sep 17 00:00:00 2001 From: Evgeny Grechnikov Date: Tue, 16 Oct 2018 01:03:55 +0300 Subject: LASTEXPRESS: drop sound thread The backend runs its own sound thread anyway, with the corresponding bookkeeping that we use. We don't need yet another sound thread, and it is always nice to not have something that could change our structures from underneath us. --- engines/lastexpress/sound/queue.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'engines/lastexpress/sound/queue.h') diff --git a/engines/lastexpress/sound/queue.h b/engines/lastexpress/sound/queue.h index 60c447596d..1c73f57906 100644 --- a/engines/lastexpress/sound/queue.h +++ b/engines/lastexpress/sound/queue.h @@ -40,9 +40,6 @@ public: SoundQueue(LastExpressEngine *engine); ~SoundQueue(); - // Timer - void handleTimer(); - // Queue void addToQueue(SoundEntry *entry); void removeFromQueue(Common::String filename); @@ -96,8 +93,6 @@ protected: private: LastExpressEngine *_engine; - Common::Mutex _mutex; - // State & shared data int _state; SoundType _currentType; -- cgit v1.2.3