mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Change _WIN32 check to a _MSC_VER check in Inline.h
This is compiler dependent, not OS dependent.
This commit is contained in:
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _MSC_VER
|
||||||
#define DOLPHIN_FORCE_INLINE __forceinline
|
#define DOLPHIN_FORCE_INLINE __forceinline
|
||||||
#else
|
#else
|
||||||
#define DOLPHIN_FORCE_INLINE inline __attribute__((always_inline))
|
#define DOLPHIN_FORCE_INLINE inline __attribute__((always_inline))
|
||||||
|
Reference in New Issue
Block a user