2
0
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:
Alibek Omarov 2022-08-06 20:19:42 +03:00
parent 90c566dde3
commit 10ad1c3b38

View File

@ -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