diff options
author | notaz | 2011-03-21 22:52:38 +0200 |
---|---|---|
committer | notaz | 2011-03-21 22:52:38 +0200 |
commit | cefe86b749ed699cd8af96e4875bb4e90e967569 (patch) | |
tree | 8e4af227ea9d220f6d7997d4cdc6291a99d76ec8 /libpcsxcore | |
parent | ef94866c5ee97402b81a173093c0be4ca0daa4a0 (diff) | |
download | pcsx_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.c | 2 | ||||
-rw-r--r-- | libpcsxcore/psxcounters.c | 2 |
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(); } } |