1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-02 01:24:11 +01:00

[d3d11] Fix incorrect AddRef -> Release

Spotted by @jp7677
This commit is contained in:
Philip Rebohle 2019-08-29 21:24:47 +02:00
parent 2776ef43a3
commit b0552751ad
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -22,7 +22,7 @@ namespace dxvk {
ULONG STDMETHODCALLTYPE D3D11DXGIResource::Release() {
return m_resource->AddRef();
return m_resource->Release();
}