diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-07-09 06:19:35 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-07-09 06:19:35 +0000 |
| commit | fd6e2e2b6ccb5474df022d76c9b9c23508ba787d (patch) | |
| tree | 2f90db9624e789e0169659bad1f165e5a34f21db /libpcsxcore/psxhle.c | |
| parent | 302832eabec2f062591162840da9dbe9a127f780 (diff) | |
Fix some minor warnings on SysPrintf and SysMessage use in libpcsxcore.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85929 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/psxhle.c')
| -rwxr-xr-x | libpcsxcore/psxhle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/psxhle.c b/libpcsxcore/psxhle.c index 9d1d0529..cbb861f6 100755 --- a/libpcsxcore/psxhle.c +++ b/libpcsxcore/psxhle.c @@ -57,7 +57,7 @@ static void hleBootstrap() { // 0xbfc00000 SysPrintf("hleBootstrap\n"); CheckCdrom(); LoadCdrom(); - SysPrintf("CdromLabel: \"%s\": PC = %8.8lx (SP = %8.8lx)\n", CdromLabel, psxRegs.pc, psxRegs.GPR.n.sp); + SysPrintf("CdromLabel: \"%s\": PC = %8.8x (SP = %8.8x)\n", CdromLabel, (unsigned int)psxRegs.pc, (unsigned int)psxRegs.GPR.n.sp); } typedef struct { |
