filesystem: report an error when opening file was unsuccessful, with the exception for non-existent files
This commit is contained in:
parent
a675806c91
commit
c926fee13c
1 changed files with 3 additions and 0 deletions
|
@ -1677,6 +1677,9 @@ file_t *FS_SysOpen( const char *filepath, const char *mode )
|
||||||
|
|
||||||
if( file->handle < 0 )
|
if( file->handle < 0 )
|
||||||
{
|
{
|
||||||
|
if( errno != ENOENT )
|
||||||
|
Con_Printf( S_ERROR "%s: can't open file %s: %s\n", __func__, filepath, strerror( errno ));
|
||||||
|
|
||||||
Mem_Free( file );
|
Mem_Free( file );
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue