mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
gl: Check that fence is not empty before calling destroy
This commit is contained in:
parent
2b0edf6cde
commit
dfc564f837
1 changed files with 2 additions and 1 deletions
|
@ -308,7 +308,8 @@ namespace gl
|
|||
pbo_size = 0;
|
||||
}
|
||||
|
||||
m_fence.destroy();
|
||||
if (!m_fence.is_empty())
|
||||
m_fence.destroy();
|
||||
}
|
||||
|
||||
texture::format get_format() const
|
||||
|
|
Loading…
Add table
Reference in a new issue