Android x86 buildfix

This commit is contained in:
Henrik Rydgard 2014-12-07 22:00:30 +01:00
parent 1a1faeffd1
commit 7de3ed109a

View File

@ -23,6 +23,10 @@
#include "Common/FixedSizeQueue.h" #include "Common/FixedSizeQueue.h"
#include "Common/Atomics.h" #include "Common/Atomics.h"
#ifdef _M_SSE
#include <emmintrin.h>
#endif
#include "Core/CoreTiming.h" #include "Core/CoreTiming.h"
#include "Core/MemMap.h" #include "Core/MemMap.h"
#include "Core/Host.h" #include "Core/Host.h"
@ -32,6 +36,7 @@
#include "Core/HLE/sceKernel.h" #include "Core/HLE/sceKernel.h"
#include "Core/HLE/sceKernelThread.h" #include "Core/HLE/sceKernelThread.h"
// Should be used to lock anything related to the outAudioQueue. // Should be used to lock anything related to the outAudioQueue.
// atomic locks are used on the lock. TODO: make this lock-free // atomic locks are used on the lock. TODO: make this lock-free
atomic_flag atomicLock_; atomic_flag atomicLock_;