diff options
Diffstat (limited to 'libretro-common/include')
-rw-r--r-- | libretro-common/include/retro_miscellaneous.h | 8 |
1 files changed, 1 insertions, 7 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 <Xtl.h> #endif -#if defined(__CELLOS_LV2__) -#include <sys/fs_external.h> -#endif - #include <limits.h> #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 |