diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-08 02:07:44 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-08-08 02:10:25 -0400 |
| commit | 57982df105a6d149cc82292541184e6ceabc288c (patch) | |
| tree | cafcaec08c7f7f7308f0856a03f1c8310a0a6740 /src/video_core/engines/maxwell_3d.cpp | |
| parent | 4fa3511a63519b338ab6d49e5a2ef751b2e1d09a (diff) | |
maxwell_3d: Use correct const buffer size and check bounds.
- Fixes mem corruption with Super Mario Odyssey and Pokkén Tournament DX.
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 5c0ae8009..ed22a2090 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -238,6 +238,8 @@ void Maxwell3D::ProcessCBBind(Regs::ShaderStage stage) { auto& buffer = shader.const_buffers[bind_data.index]; + ASSERT(bind_data.index < Regs::MaxConstBuffers); + buffer.enabled = bind_data.valid.Value() != 0; buffer.index = bind_data.index; buffer.address = regs.const_buffer.BufferAddress(); |
