diff --git a/src/dxgi/dxgi_adapter.cpp b/src/dxgi/dxgi_adapter.cpp index 2b7b61c7..86697113 100644 --- a/src/dxgi/dxgi_adapter.cpp +++ b/src/dxgi/dxgi_adapter.cpp @@ -76,6 +76,11 @@ namespace dxvk { HRESULT hr = this->GetDesc1(&desc1); if (SUCCEEDED(hr)) { + std::memcpy( + pDesc->Description, + desc1.Description, + sizeof(pDesc->Description)); + pDesc->VendorId = desc1.VendorId; pDesc->DeviceId = desc1.DeviceId; pDesc->SubSysId = desc1.SubSysId;