mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-23 03:10:14 +00:00
Only define HAVE_BUFFERED_IO if platform is not PS3/PSP or Vita
This commit is contained in:
parent
bf017e3a0c
commit
502c2a41a9
@ -66,10 +66,6 @@
|
||||
#include <streams/file_stream.h>
|
||||
#include <memmap.h>
|
||||
|
||||
#if 1
|
||||
#define HAVE_BUFFERED_IO 1
|
||||
#endif
|
||||
|
||||
struct RFILE
|
||||
{
|
||||
unsigned hints;
|
||||
@ -78,6 +74,9 @@ struct RFILE
|
||||
#elif defined(__CELLOS_LV2__)
|
||||
int fd;
|
||||
#else
|
||||
|
||||
#define HAVE_BUFFERED_IO 1
|
||||
|
||||
#if defined(HAVE_BUFFERED_IO)
|
||||
FILE *fp;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user