From 19e7cf877b6a925517238c59485edf5fe85bf2a1 Mon Sep 17 00:00:00 2001 From: notaz Date: Sat, 13 Aug 2011 00:47:16 +0300 Subject: gpu_neon: frameskip: skip blits until flipped --- plugins/gpu_neon/gpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/gpu_neon/gpu.c') 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; } -- cgit v1.2.3