diff --git a/src/engine/platform/sound/nes/common.h b/src/engine/platform/sound/nes/common.h index 8f7fefee8..c8ab4b6bc 100644 --- a/src/engine/platform/sound/nes/common.h +++ b/src/engine/platform/sound/nes/common.h @@ -70,7 +70,11 @@ enum database_mode { #if defined (DEBUG) #define INLINE #else +#ifdef _MSC_VER +#define INLINE __forceinline +#else #define INLINE inline __attribute__((always_inline)) #endif +#endif #endif /* COMMON_H_ */