From 894fd7ddaa3c621413dbc6704840a7cc13d15a9d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 19 Dec 2020 22:50:34 +0100 Subject: Update --- libretro-common/include/retro_miscellaneous.h | 8 +------- libretro.h | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/libretro-common/include/retro_miscellaneous.h b/libretro-common/include/retro_miscellaneous.h index e526d6e..02aa521 100644 --- a/libretro-common/include/retro_miscellaneous.h +++ b/libretro-common/include/retro_miscellaneous.h @@ -36,10 +36,6 @@ #include #endif -#if defined(__CELLOS_LV2__) -#include -#endif - #include #ifdef _MSC_VER @@ -72,9 +68,7 @@ static INLINE bool bits_any_set(uint32_t* ptr, uint32_t count) } #ifndef PATH_MAX_LENGTH -#if defined(__CELLOS_LV2__) -#define PATH_MAX_LENGTH CELL_FS_MAX_FS_PATH_LENGTH -#elif defined(_XBOX1) || defined(_3DS) || defined(PSP) || defined(GEKKO)|| defined(WIIU) +#if defined(_XBOX1) || defined(_3DS) || defined(PSP) || defined(GEKKO)|| defined(WIIU) #define PATH_MAX_LENGTH 512 #else #define PATH_MAX_LENGTH 4096 diff --git a/libretro.h b/libretro.h index 59bd513..d843114 100644 --- a/libretro.h +++ b/libretro.h @@ -69,7 +69,7 @@ extern "C" { # endif # endif # else -# if defined(__GNUC__) && __GNUC__ >= 4 && !defined(__CELLOS_LV2__) +# if defined(__GNUC__) && __GNUC__ >= 4 # define RETRO_API RETRO_CALLCONV __attribute__((__visibility__("default"))) # else # define RETRO_API RETRO_CALLCONV -- cgit v1.2.3