AGS: Remove unused mutex variables in AGSEngine

The last use for those mutexes were removed respectively in:
a4569cb180 - AGS: Properly remove sound caching
ce606cd25c - AGS: Remove deprecated audio classes
c25b08448d - AGS: Removed AudioChannelsLock as it's no longer needed
This commit is contained in:
Thierry Crozat 2022-06-16 23:00:48 +01:00
parent 5f29c6b523
commit 6690bfa5c7
3 changed files with 0 additions and 7 deletions

View File

@ -36,7 +36,6 @@
#include "ags/detection.h"
#include "ags/shared/gfx/bitmap.h"
#include "ags/lib/allegro/system.h"
#include "ags/engine/util/mutex_std.h"
namespace AGS3 {
class Globals;
@ -68,9 +67,6 @@ public:
EventsManager *_events;
Music *_music;
::AGS3::GFX_DRIVER *_gfxDriver;
::AGS3::AGS::Engine::Mutex _sMutex;
::AGS3::AGS::Engine::Mutex _soundCacheMutex;
::AGS3::AGS::Engine::Mutex _mp3Mutex;
::AGS3::Globals *_globals;
bool _forceTextAA;
protected:

View File

@ -27,8 +27,6 @@
#include "ags/shared/ac/dynobj/script_audio_clip.h"
#include "ags/engine/ac/dynobj/script_audio_channel.h"
#include "ags/engine/media/audio/ambient_sound.h"
#include "ags/engine/util/mutex.h"
#include "ags/engine/util/mutex_lock.h"
#include "ags/engine/ac/timer.h"
namespace AGS3 {

View File

@ -28,7 +28,6 @@
#ifndef AGS_ENGINE_MEDIA_AUDIO_SOUNDCLIP_H
#define AGS_ENGINE_MEDIA_AUDIO_SOUNDCLIP_H
#include "ags/engine/util/mutex.h"
#include "audio/mixer.h"
#include "audio/audiostream.h"
#include "common/stream.h"