Skip to content

Commit

Permalink
Fix DxvkShaderConstData garbage pointer for default constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
tayarani authored Aug 25, 2021
1 parent ae88198 commit 2786bbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dxvk/dxvk_shader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

namespace dxvk {

DxvkShaderConstData::DxvkShaderConstData() {
DxvkShaderConstData::DxvkShaderConstData()
: m_size(0), m_data(nullptr) {

}

Expand Down

0 comments on commit 2786bbd

Please sign in to comment.