From 29cb38bb8791afc3367964b86807418fdcfd70d1 Mon Sep 17 00:00:00 2001 From: Franck Date: Mon, 28 Dec 2020 06:58:12 +0100 Subject: [PATCH] libretro: fix is_little_endian build issue --- Resources/asm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/asm.c b/Resources/asm.c index 22f0c91..bb0530a 100644 --- a/Resources/asm.c +++ b/Resources/asm.c @@ -259,7 +259,7 @@ bool is_little_endian_real_check() u.x = 1; return(u.y[0]); } - +#ifndef __LIBRETRO__ /** * is_little_endian: * @@ -278,6 +278,7 @@ bool is_little_endian() return(is_little_endian_real_check()); #endif } +#endif void asm2C_init() {