[dxvk] Fixed DxvkPhysicalBufferSlice initialization

This commit is contained in:
Philip Rebohle 2018-01-18 18:53:33 +01:00
parent 9334873188
commit 82ffa88efd
No known key found for this signature in database
GPG key ID: C8CC613427A31C99

View file

@ -196,9 +196,9 @@ namespace dxvk {
private:
Rc<DxvkPhysicalBuffer> m_buffer;
VkDeviceSize m_offset;
VkDeviceSize m_length;
Rc<DxvkPhysicalBuffer> m_buffer = nullptr;
VkDeviceSize m_offset = 0;
VkDeviceSize m_length = 0;
};