mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-12 23:18:51 +00:00
Buildfix for targets that don't have HAVE_BUFFERED_IO defined
This commit is contained in:
parent
30d3cf8a4e
commit
0ae2e90783
@ -296,7 +296,7 @@ int filestream_getc(RFILE *stream)
|
||||
#if defined(HAVE_BUFFERED_IO)
|
||||
return fgetc(stream->fp);
|
||||
#else
|
||||
return getc(stream->fp);
|
||||
return getc(stream->fd);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user