From 7e41759b0469c7bcaa164ac4719cefbfb6ae1e98 Mon Sep 17 00:00:00 2001 From: Thomas Jentzsch Date: Fri, 24 Mar 2023 17:46:36 +0100 Subject: [PATCH] trying to fix Libretro pipeline build error --- src/common/bspf.hxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/common/bspf.hxx b/src/common/bspf.hxx index 9c3ea2dda..1457693e9 100644 --- a/src/common/bspf.hxx +++ b/src/common/bspf.hxx @@ -135,8 +135,10 @@ namespace BSPF static const string ARCH = "NOARCH"; #endif - #if defined(BSPF_WINDOWS) || defined(__LIB_RETRO__) + #if defined(BSPF_WINDOWS) #define FORCE_INLINE __forceinline + #elif defined(__LIB_RETRO__) +#define FORCE_INLINE #else #define FORCE_INLINE inline __attribute__((always_inline)) #endif