Dynamic recompiler: Only disable inline if not on Windows or MacOS.

This commit is contained in:
OBattler 2025-01-16 01:14:23 +01:00
parent 5e0c086d4a
commit fbafb7507b

View file

@ -386,7 +386,11 @@ block_ended:
cpu_end_block_after_ins = 0;
}
#if defined(_WIN32) || defined(__APPLE__)
static __inline void
#else
static void __attribute__((noinline))
#endif
exec386_dynarec_dyn(void)
{
uint32_t start_pc = 0;