This commit is contained in:
Mook 2022-01-19 18:55:17 -08:00 committed by GitHub
commit bd2bb35de4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -689,7 +689,20 @@ void FileSystem::openReadRaw(SDL_RWops &ops,
bool freeOnClose)
{
PHYSFS_File *handle = PHYSFS_openRead(filename);
assert(handle);
if (!handle)
{
PHYSFS_ErrorCode error = PHYSFS_getLastErrorCode();
switch (error)
{
case PHYSFS_ERR_NOT_FOUND:
case PHYSFS_ERR_NOT_A_FILE:
throw Exception(Exception::NoFileError, "%s", filename);
default:
throw Exception(Exception::PHYSFSError,
"PhysFS: %s", PHYSFS_getErrorByCode(error));
}
}
initReadOps(handle, ops, freeOnClose);
}