summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-11-28 01:01:45 +0100
committerGitHub <noreply@github.com>2016-11-28 01:01:45 +0100
commite279a6955edf644cf832dd329ac72931aea8add7 (patch)
tree92e0ffea8d1ca855e5b7178224883de5cf33562a /src/video_core
parentMerge pull request #2132 from wwylele/fix-fs-err (diff)
parentGPU: Remove the broken frame_skip option. (diff)
downloadyuzu-e279a6955edf644cf832dd329ac72931aea8add7.tar
yuzu-e279a6955edf644cf832dd329ac72931aea8add7.tar.gz
yuzu-e279a6955edf644cf832dd329ac72931aea8add7.tar.bz2
yuzu-e279a6955edf644cf832dd329ac72931aea8add7.tar.lz
yuzu-e279a6955edf644cf832dd329ac72931aea8add7.tar.xz
yuzu-e279a6955edf644cf832dd329ac72931aea8add7.tar.zst
yuzu-e279a6955edf644cf832dd329ac72931aea8add7.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/command_processor.cpp4
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) {
if (id >= regs.NumIds())
return;
- // If we're skipping this frame, only allow trigger IRQ
- if (GPU::g_skip_frame && id != PICA_REG_INDEX(trigger_irq))
- return;
-
// TODO: Figure out how register masking acts on e.g. vs.uniform_setup.set_value
u32 old_value = regs[id];