diff --git a/libretro-common/streams/file_stream.c b/libretro-common/streams/file_stream.c index 543d9f0d30..b2db8c5cb5 100644 --- a/libretro-common/streams/file_stream.c +++ b/libretro-common/streams/file_stream.c @@ -66,10 +66,6 @@ #include #include -#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