aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_neon/gpu.c
diff options
context:
space:
mode:
authornotaz2011-08-13 00:47:16 +0300
committernotaz2011-08-13 00:57:33 +0300
commit19e7cf877b6a925517238c59485edf5fe85bf2a1 (patch)
tree1bbacecc3d242359ff21edae011ce9748db8330e /plugins/gpu_neon/gpu.c
parentb094071f3a952169907415a7a8b38e9bdb2a4722 (diff)
downloadpcsx_rearmed-19e7cf877b6a925517238c59485edf5fe85bf2a1.tar.gz
pcsx_rearmed-19e7cf877b6a925517238c59485edf5fe85bf2a1.tar.bz2
pcsx_rearmed-19e7cf877b6a925517238c59485edf5fe85bf2a1.zip
gpu_neon: frameskip: skip blits until flipped
Diffstat (limited to 'plugins/gpu_neon/gpu.c')
-rw-r--r--plugins/gpu_neon/gpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gpu_neon/gpu.c b/plugins/gpu_neon/gpu.c
index 5bd4151..2db4379 100644
--- a/plugins/gpu_neon/gpu.c
+++ b/plugins/gpu_neon/gpu.c
@@ -113,7 +113,7 @@ void GPUwriteStatus(uint32_t data)
uint32_t cmd = data >> 24;
if (cmd < ARRAY_SIZE(gpu.regs)) {
- if (cmd != 0 && gpu.regs[cmd] == data)
+ if (cmd != 0 && cmd != 5 && gpu.regs[cmd] == data)
return;
gpu.regs[cmd] = data;
}