Not available on PSP either

This commit is contained in:
twinaphex 2018-08-08 06:03:01 +02:00
parent c59b054ef2
commit a3847ed656

View File

@ -388,7 +388,7 @@ int64_t retro_vfs_file_truncate_impl(libretro_vfs_implementation_file *stream, i
#ifdef _WIN32
if(_chsize(_fileno(stream->fp), length) != 0)
return -1;
#elif !defined(VITA)
#elif !defined(VITA) && !defined(PSP)
if(ftruncate(fileno(stream->fp), length) != 0)
return -1;
#endif