mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
OpenAL: continue work on it
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2799 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -42,8 +42,13 @@ public:
|
||||
static bool isValid() { return true; }
|
||||
virtual bool usesMixer() const { return true; }
|
||||
virtual void Update();
|
||||
private:
|
||||
virtual void SoundThread();
|
||||
|
||||
#ifdef _WIN32
|
||||
static DWORD WINAPI ThreadFunc(void* args);
|
||||
#else
|
||||
static void* soundThread(void* args);
|
||||
#endif
|
||||
|
||||
private:
|
||||
Common::Thread *thread;
|
||||
Common::CriticalSection soundCriticalSection;
|
||||
|
Reference in New Issue
Block a user