If RARCH_INTERNAL is not defined, turn rarch_assert into plain assert() call

This commit is contained in:
twinaphex 2014-12-21 01:16:38 +01:00
parent 9d9b0146fa
commit c37249baf7

View File

@ -69,9 +69,13 @@
#define min(a, b) ((a) < (b) ? (a) : (b))
#endif
#ifdef RARCH_INTERNAL
#define rarch_assert(cond) do { \
if (!(cond)) { RARCH_ERR("Assertion failed at %s:%d.\n", __FILE__, __LINE__); abort(); } \
} while(0)
#else
#define rarch_assert(cond) assert(cond)
#endif
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
#define RARCH_SCALE_BASE 256