mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 01:45:19 +01:00
filesystem: use correct flushing function for file descriptors on Win32
This commit is contained in:
parent
90c566dde3
commit
10ad1c3b38
@ -1984,7 +1984,7 @@ int FS_Flush( file_t *file )
|
||||
if( fsync( file->handle ) < 0 )
|
||||
return EOF;
|
||||
#else
|
||||
if( fflush( file->handle ) < 0 )
|
||||
if( _commit( file->handle ) < 0 )
|
||||
return EOF;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user