diff options
author | twinaphex | 2012-12-11 02:54:04 +0100 |
---|---|---|
committer | twinaphex | 2012-12-11 02:54:04 +0100 |
commit | f36d076529d621b93bade88eab4d499561fe6cef (patch) | |
tree | 828e25f577cfd2e4f8f68435a90f450efdeba359 /libpcsxcore/new_dynarec | |
parent | e24064ea9b05d8ff06e8c663c3001f6495a117c4 (diff) | |
parent | 70d56ca34a084bf613247c027f58b58055d75ecd (diff) | |
download | pcsx_rearmed-f36d076529d621b93bade88eab4d499561fe6cef.tar.gz pcsx_rearmed-f36d076529d621b93bade88eab4d499561fe6cef.tar.bz2 pcsx_rearmed-f36d076529d621b93bade88eab4d499561fe6cef.zip |
Merge git://github.com/notaz/pcsx_rearmed
Diffstat (limited to 'libpcsxcore/new_dynarec')
-rw-r--r-- | libpcsxcore/new_dynarec/pcsxmem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/new_dynarec/pcsxmem.c b/libpcsxcore/new_dynarec/pcsxmem.c index 88e8112..90f7765 100644 --- a/libpcsxcore/new_dynarec/pcsxmem.c +++ b/libpcsxcore/new_dynarec/pcsxmem.c @@ -34,7 +34,7 @@ static void map_item(u32 *out, const void *h, u32 flag) { u32 hv = (u32)h; if (hv & 1) { - fprintf(stderr, "FATAL: %p has LSB set\n", h); + SysPrintf("FATAL: %p has LSB set\n", h); abort(); } *out = (hv >> 1) | (flag << 31); @@ -303,7 +303,7 @@ void new_dyna_pcsx_mem_init(void) // have to map these further to keep tcache close to .text mem_readtab = psxMap(0x08000000, 0x200000 * 4, 0, MAP_TAG_LUTS); if (mem_readtab == NULL) { - fprintf(stderr, "failed to map mem tables\n"); + SysPrintf("failed to map mem tables\n"); exit(1); } mem_writetab = mem_readtab + 0x100000; |