mirror of https://github.com/mgba-emu/mgba.git
All: Fix typo, disabling __builtin_expect on MSVS
This commit is contained in:
parent
1a4ed6fe5e
commit
c0909c8713
|
@ -114,7 +114,7 @@ typedef int32_t ssize_t;
|
|||
|
||||
#define DECL_BIT(TYPE, FIELD, BIT) DECL_BITS(TYPE, FIELD, BIT, 1)
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#ifndef _MSC_VER
|
||||
#define LIKELY(X) __builtin_expect(!!(X), 1)
|
||||
#define UNLIKELY(X) __builtin_expect(!!(X), 0)
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue