diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2022-10-11 17:22:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-11 17:22:40 -0400 |
| commit | 133a68ee9b420d30a58fe7ddd8c03065324a4d70 (patch) | |
| tree | e2a8f89c372b545c6cabbcc53a9d725a6fe2cdb1 /src/video_core/dirty_flags.cpp | |
| parent | d9336860d742f672370ff9b57ae17e08d1b757d7 (diff) | |
| parent | 4496030ea9bd873d101628a8eb943b976ec7b07a (diff) | |
Merge pull request #9048 from Kelebek1/regs
[video_core] Fix stencil mask registers
Diffstat (limited to 'src/video_core/dirty_flags.cpp')
| -rw-r--r-- | src/video_core/dirty_flags.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/dirty_flags.cpp b/src/video_core/dirty_flags.cpp index 1039e036f..c2ecc12f5 100644 --- a/src/video_core/dirty_flags.cpp +++ b/src/video_core/dirty_flags.cpp @@ -61,7 +61,7 @@ void SetupDirtyRenderTargets(Maxwell3D::DirtyState::Tables& tables) { } void SetupDirtyShaders(Maxwell3D::DirtyState::Tables& tables) { - FillBlock(tables[0], OFF(pipelines), NUM(pipelines) * Maxwell3D::Regs::MaxShaderProgram, + FillBlock(tables[0], OFF(pipelines), NUM(pipelines[0]) * Maxwell3D::Regs::MaxShaderProgram, Shaders); } } // Anonymous namespace |
