diff options
author | twinaphex | 2020-12-19 22:50:34 +0100 |
---|---|---|
committer | twinaphex | 2020-12-19 22:50:46 +0100 |
commit | 894fd7ddaa3c621413dbc6704840a7cc13d15a9d (patch) | |
tree | 795bd279002c2475a62e5801ebcd6e049004d81a /libretro-common | |
parent | 3d953da115ab78dc376bb1a14ba037737f24c1e6 (diff) | |
download | snes9x2005-894fd7ddaa3c621413dbc6704840a7cc13d15a9d.tar.gz snes9x2005-894fd7ddaa3c621413dbc6704840a7cc13d15a9d.tar.bz2 snes9x2005-894fd7ddaa3c621413dbc6704840a7cc13d15a9d.zip |
Update
Diffstat (limited to 'libretro-common')
-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 |