mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
More MSVC 2010 build fixes
This commit is contained in:
@ -18,9 +18,8 @@
|
|||||||
#ifndef _MIXER_H_
|
#ifndef _MIXER_H_
|
||||||
#define _MIXER_H_
|
#define _MIXER_H_
|
||||||
|
|
||||||
#include <mutex>
|
|
||||||
|
|
||||||
#include "WaveFile.h"
|
#include "WaveFile.h"
|
||||||
|
#include "StdMutex.h"
|
||||||
|
|
||||||
// 16 bit Stereo
|
// 16 bit Stereo
|
||||||
#define MAX_SAMPLES (1024 * 8)
|
#define MAX_SAMPLES (1024 * 8)
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
// partial std::condition_variable implementation for win32/pthread
|
// partial std::condition_variable implementation for win32/pthread
|
||||||
|
|
||||||
#include <mutex>
|
#include "StdMutex.h"
|
||||||
|
|
||||||
#if (_MSC_VER >= 1600) || (GCC_VERSION >= GCC_VER(4,3,0) && __GXX_EXPERIMENTAL_CXX0X__)
|
#if (_MSC_VER >= 1600) || (GCC_VERSION >= GCC_VER(4,3,0) && __GXX_EXPERIMENTAL_CXX0X__)
|
||||||
#define USE_RVALUE_REFERENCES
|
#define USE_RVALUE_REFERENCES
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#if HAVE_PORTAUDIO
|
#if HAVE_PORTAUDIO
|
||||||
|
|
||||||
#include <mutex>
|
#include "StdMutex.h"
|
||||||
|
|
||||||
class CEXIMic : public IEXIDevice
|
class CEXIMic : public IEXIDevice
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user