[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
1 changed files with 1 additions and 1 deletions

View File

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