Change _WIN32 check to a _MSC_VER check in Inline.h

This is compiler dependent, not OS dependent.
This commit is contained in:
Minty-Meeo 2022-05-02 01:06:45 -05:00
parent dcf8bd7733
commit 9c22205ab1

View file

@ -3,7 +3,7 @@
#pragma once
#ifdef _WIN32
#ifdef _MSC_VER
#define DOLPHIN_FORCE_INLINE __forceinline
#else
#define DOLPHIN_FORCE_INLINE inline __attribute__((always_inline))