diff options
| author | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-08 01:55:57 +0000 |
|---|---|---|
| committer | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-08 01:55:57 +0000 |
| commit | e532bbba974da3a64e931c174a42692602239a6a (patch) | |
| tree | df0b745666af02afdf0bebb80535879e74e0c435 /libpcsxcore/psxmem.c | |
| parent | a554d2c4011f7dbcc9560d7d9c11368ed1bf3f7a (diff) | |
psxmem.c
- slight memory tweak
- supposedly improves compatibility
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@59300 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/psxmem.c')
| -rw-r--r-- | libpcsxcore/psxmem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/psxmem.c b/libpcsxcore/psxmem.c index dd18e48e..c7c9a51d 100644 --- a/libpcsxcore/psxmem.c +++ b/libpcsxcore/psxmem.c @@ -144,7 +144,7 @@ u8 psxMemRead8(u32 mem) { u32 t; - psxRegs.cycle += 2; + psxRegs.cycle += 1; t = mem >> 16; @@ -173,7 +173,7 @@ u16 psxMemRead16(u32 mem) { u32 t; - psxRegs.cycle += 2; + psxRegs.cycle += 1; t = mem >> 16; |
