aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore
diff options
context:
space:
mode:
authornotaz2012-09-13 02:43:13 +0300
committernotaz2012-09-13 02:43:13 +0300
commitc979c3ee0d0bc6bece799a6f4013993d7cb2d5f3 (patch)
treeb2ca7a13e463f72d31569947baa04a937233d415 /libpcsxcore
parent29ddd9e8a2bd7d3c8baf6023a05e8cf407bd2212 (diff)
downloadpcsx_rearmed-c979c3ee0d0bc6bece799a6f4013993d7cb2d5f3.tar.gz
pcsx_rearmed-c979c3ee0d0bc6bece799a6f4013993d7cb2d5f3.tar.bz2
pcsx_rearmed-c979c3ee0d0bc6bece799a6f4013993d7cb2d5f3.zip
silence some 64bit related warnings
still need to fix savestate compat
Diffstat (limited to 'libpcsxcore')
-rw-r--r--libpcsxcore/psxbios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/psxbios.c b/libpcsxcore/psxbios.c
index e4fcad3..81a40aa 100644
--- a/libpcsxcore/psxbios.c
+++ b/libpcsxcore/psxbios.c
@@ -939,7 +939,7 @@ void psxBios_InitHeap() { // 0x39
heap_end = (u32 *)((u8 *)heap_addr + size);
*heap_addr = SWAP32(size | 1);
- SysPrintf("InitHeap %x,%x : %x %x\n",a0,a1, (uptr)heap_addr-(uptr)psxM, size);
+ SysPrintf("InitHeap %x,%x : %x %x\n",a0,a1, (int)((uptr)heap_addr-(uptr)psxM), size);
pc0 = ra;
}