diff options
author | notaz | 2011-10-09 20:50:16 +0300 |
---|---|---|
committer | notaz | 2011-10-10 00:25:59 +0300 |
commit | 554a2220f2413cc29d7912ad3f7d91c9e64284cf (patch) | |
tree | 04890e4e0698c862c81e349ef923f338c63a421e /libpcsxcore | |
parent | 911f2d55ac72cab3417983708cbb6a5fde2f13db (diff) | |
download | pcsx_rearmed-554a2220f2413cc29d7912ad3f7d91c9e64284cf.tar.gz pcsx_rearmed-554a2220f2413cc29d7912ad3f7d91c9e64284cf.tar.bz2 pcsx_rearmed-554a2220f2413cc29d7912ad3f7d91c9e64284cf.zip |
psxcounters: change spu update ~2ms
old value ~1.4 was weird anyway
Diffstat (limited to 'libpcsxcore')
-rw-r--r-- | libpcsxcore/psxcounters.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/psxcounters.c b/libpcsxcore/psxcounters.c index 865b3d8..db1462d 100644 --- a/libpcsxcore/psxcounters.c +++ b/libpcsxcore/psxcounters.c @@ -68,7 +68,7 @@ static const u32 CountToTarget = 1; static const u32 FrameRate[] = { 60, 50 }; static const u32 VBlankStart[] = { 240, 256 }; static const u32 HSyncTotal[] = { 263, 313 }; -static const u32 SpuUpdInterval[] = { 23, 22 }; +static const u32 SpuUpdInterval[] = { 32, 32 }; static const s32 VerboseLevel = 0; |