Using unbuffered I/O anyway

This commit is contained in:
Vas Crabb 2016-03-01 14:44:01 +11:00
parent 743550d4c3
commit 4157688db6

View File

@ -383,9 +383,6 @@ file_error osd_fflush(osd_file *file)
switch (file->type)
{
case SDLFILE_FILE:
result = fflush(file->handle);
if (result == EOF)
return error_to_file_error(errno);
return FILERR_NONE;
default: