aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneonloop2021-04-03 17:08:43 +0000
committerneonloop2021-04-03 17:08:43 +0000
commit871d11afb4cd574388b6f56074ec553034e1e117 (patch)
treebc9603707e25d85caab810552d8922088f393c82
parentf81b441134306c96c0c06fa0cce77d1f78c274e4 (diff)
downloadpcsx_rearmed-871d11afb4cd574388b6f56074ec553034e1e117.tar.gz
pcsx_rearmed-871d11afb4cd574388b6f56074ec553034e1e117.tar.bz2
pcsx_rearmed-871d11afb4cd574388b6f56074ec553034e1e117.zip
Raises autoskip frame limit to 3
-rw-r--r--plugins/gpulib/gpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gpulib/gpu.c b/plugins/gpulib/gpu.c
index cffb97d..fb93cb5 100644
--- a/plugins/gpulib/gpu.c
+++ b/plugins/gpulib/gpu.c
@@ -97,7 +97,7 @@ static noinline void decide_frameskip(void)
gpu.frameskip.frame_ready = 1;
}
- if (gpu.frameskip.set < 0 && gpu.frameskip.cnt < 2 && *gpu.frameskip.advice)
+ if (gpu.frameskip.set < 0 && gpu.frameskip.cnt < 3 && *gpu.frameskip.advice)
gpu.frameskip.active = 1;
else if (!gpu.frameskip.active && *gpu.frameskip.advice)
gpu.frameskip.active = 1;