mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-04 07:24:15 +01:00
[util] Filter out internal private ref on object destruction
Closes #3531 for real this time.
This commit is contained in:
parent
a7278cdab1
commit
987df8a487
@ -73,7 +73,7 @@ namespace dxvk {
|
||||
}
|
||||
|
||||
bool HasLiveReferences() const {
|
||||
return bool(m_refCount.load() | m_refPrivate.load());
|
||||
return bool(m_refCount.load() | (m_refPrivate.load() & 0x7FFFFFFF));
|
||||
}
|
||||
|
||||
protected:
|
||||
|
Loading…
Reference in New Issue
Block a user