diff options
| author | 2016-11-27 21:06:42 +0000 | |
|---|---|---|
| committer | 2016-11-27 21:19:56 +0000 | |
| commit | 0820c994629a53e81dd521388a67154c8c8f9318 (patch) | |
| tree | b8f91a0cbaf3c6eab3fd98c968191f900b808dde /src/video_core | |
| parent | Merge pull request #2168 from mailwl/mic (diff) | |
| download | yuzu-0820c994629a53e81dd521388a67154c8c8f9318.tar.gz yuzu-0820c994629a53e81dd521388a67154c8c8f9318.tar.xz yuzu-0820c994629a53e81dd521388a67154c8c8f9318.zip | |
GPU: Remove the broken frame_skip option.
Fixes #1960.
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/command_processor.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp index b7c32035e..c80c96762 100644 --- a/src/video_core/command_processor.cpp +++ b/src/video_core/command_processor.cpp | |||
| @@ -52,10 +52,6 @@ static void WritePicaReg(u32 id, u32 value, u32 mask) { | |||
| 52 | if (id >= regs.NumIds()) | 52 | if (id >= regs.NumIds()) |
| 53 | return; | 53 | return; |
| 54 | 54 | ||
| 55 | // If we're skipping this frame, only allow trigger IRQ | ||
| 56 | if (GPU::g_skip_frame && id != PICA_REG_INDEX(trigger_irq)) | ||
| 57 | return; | ||
| 58 | |||
| 59 | // TODO: Figure out how register masking acts on e.g. vs.uniform_setup.set_value | 55 | // TODO: Figure out how register masking acts on e.g. vs.uniform_setup.set_value |
| 60 | u32 old_value = regs[id]; | 56 | u32 old_value = regs[id]; |
| 61 | 57 | ||