Fix an SDL compile bug

This commit is contained in:
MoochMcGee 2016-02-29 20:30:28 -06:00
parent dbe46f8a52
commit c5426670a4

View File

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