trying to fix Libretro pipeline build error

This commit is contained in:
Thomas Jentzsch 2023-03-24 17:46:36 +01:00
parent 10b133c50f
commit 7e41759b04
1 changed files with 3 additions and 1 deletions

View File

@ -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