aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore
diff options
context:
space:
mode:
authornotaz2011-03-21 22:52:38 +0200
committernotaz2011-03-21 22:52:38 +0200
commitcefe86b749ed699cd8af96e4875bb4e90e967569 (patch)
tree8e4af227ea9d220f6d7997d4cdc6291a99d76ec8 /libpcsxcore
parentef94866c5ee97402b81a173093c0be4ca0daa4a0 (diff)
downloadpcsx_rearmed-cefe86b749ed699cd8af96e4875bb4e90e967569.tar.gz
pcsx_rearmed-cefe86b749ed699cd8af96e4875bb4e90e967569.tar.bz2
pcsx_rearmed-cefe86b749ed699cd8af96e4875bb4e90e967569.zip
try to align timing with LCD refresh
Diffstat (limited to 'libpcsxcore')
-rw-r--r--libpcsxcore/psxcommon.c2
-rw-r--r--libpcsxcore/psxcounters.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/psxcommon.c b/libpcsxcore/psxcommon.c
index 5e9dcaf..ea655df 100644
--- a/libpcsxcore/psxcommon.c
+++ b/libpcsxcore/psxcommon.c
@@ -56,8 +56,8 @@ void EmuUpdate() {
if (!Config.HLE || !hleSoftCall)
SysUpdate();
- pl_frame_limit();
ApplyCheats();
+ pl_frame_limit();
}
void __Log(char *fmt, ...) {
diff --git a/libpcsxcore/psxcounters.c b/libpcsxcore/psxcounters.c
index c9f2931..044d0d3 100644
--- a/libpcsxcore/psxcounters.c
+++ b/libpcsxcore/psxcounters.c
@@ -300,8 +300,8 @@ void psxRcntUpdate()
GPU_vBlank( 0 );
setIrq( 0x01 );
- GPU_updateLace();
EmuUpdate();
+ GPU_updateLace();
}
}