diff options
Diffstat (limited to 'src/video_core/rasterizer.cpp')
| -rw-r--r-- | src/video_core/rasterizer.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/rasterizer.cpp b/src/video_core/rasterizer.cpp index c6557bf1a..25911e0a2 100644 --- a/src/video_core/rasterizer.cpp +++ b/src/video_core/rasterizer.cpp | |||
| @@ -220,6 +220,9 @@ static u8 PerformStencilAction(Regs::StencilAction action, u8 old_stencil, u8 re | |||
| 220 | case Regs::StencilAction::Keep: | 220 | case Regs::StencilAction::Keep: |
| 221 | return old_stencil; | 221 | return old_stencil; |
| 222 | 222 | ||
| 223 | case Regs::StencilAction::Zero: | ||
| 224 | return 0; | ||
| 225 | |||
| 223 | case Regs::StencilAction::Replace: | 226 | case Regs::StencilAction::Replace: |
| 224 | return ref; | 227 | return ref; |
| 225 | 228 | ||