diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-06-03 00:41:00 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-06-03 00:41:00 +0000 |
| commit | b0063e567d1882b0256e7752eb45a2164b9caeca (patch) | |
| tree | ba9a694df04d5edde3877aeb5aa055e1f39dafc5 /libpcsxcore/ix86_64 | |
| parent | 386f6485a3800b910ca47a0b4f9a28c6fc11624e (diff) | |
| download | pcsxr-b0063e567d1882b0256e7752eb45a2164b9caeca.tar.gz | |
changed cdrom timing value so that it behaves the same as older revisions.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@50743 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/ix86_64')
| -rw-r--r-- | libpcsxcore/ix86_64/iR3000A-64.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpcsxcore/ix86_64/iR3000A-64.c b/libpcsxcore/ix86_64/iR3000A-64.c index b686def2..4ca3e996 100644 --- a/libpcsxcore/ix86_64/iR3000A-64.c +++ b/libpcsxcore/ix86_64/iR3000A-64.c @@ -344,10 +344,10 @@ void iLogM32(u32 mem) { static void iDumpRegs() { int i, j; - printf("%lx %lx\n", psxRegs.pc, psxRegs.cycle); - for (i=0; i<4; i++) { - for (j=0; j<8; j++) - printf("%lx ", psxRegs.GPR.r[j*i]); + printf("%x %x\n", psxRegs.pc, psxRegs.cycle); + for (i = 0; i < 4; i++) { + for (j = 0; j < 8; j++) + printf("%x ", psxRegs.GPR.r[j*i]); printf("\n"); } } |
