mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-06 17:48:08 +00:00
OSX build fix
This commit is contained in:
parent
91fe5cc821
commit
8494a439c7
3 changed files with 6 additions and 6 deletions
4
Externals/SoundTouch/STTypes.h
vendored
4
Externals/SoundTouch/STTypes.h
vendored
|
@ -62,9 +62,9 @@ typedef unsigned long ulong;
|
|||
|
||||
#ifndef _WINDEF_
|
||||
// if these aren't defined already by Windows headers, define now
|
||||
|
||||
#if !defined(__APPLE__)
|
||||
typedef int BOOL;
|
||||
|
||||
#endif
|
||||
#define FALSE 0
|
||||
#define TRUE 1
|
||||
|
||||
|
|
6
Externals/SoundTouch/cpu_detect_x86.cpp
vendored
6
Externals/SoundTouch/cpu_detect_x86.cpp
vendored
|
@ -50,11 +50,11 @@
|
|||
#elif defined(_M_IX86)
|
||||
// windows non-gcc
|
||||
#include <intrin.h>
|
||||
#define bit_MMX (1 << 23)
|
||||
#define bit_SSE (1 << 25)
|
||||
#define bit_SSE2 (1 << 26)
|
||||
#endif
|
||||
|
||||
#define bit_MMX (1 << 23)
|
||||
#define bit_SSE (1 << 25)
|
||||
#define bit_SSE2 (1 << 26)
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue