From 5a96997f186b2cff1a24ed5572430fe0f031e8d3 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Tue, 28 Oct 2014 03:13:05 +0100 Subject: initial libretro port. --- source/getset.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source/getset.h') diff --git a/source/getset.h b/source/getset.h index 02a3845..be81c23 100644 --- a/source/getset.h +++ b/source/getset.h @@ -120,7 +120,7 @@ uint8 S9xGetByte (uint32 Address) return (*(GetAddress + (Address & 0xffff))); } - switch ((int) GetAddress) + switch ((intptr_t) GetAddress) { case CMemory::MAP_PPU: return (S9xGetPPU (Address & 0xffff)); @@ -224,7 +224,7 @@ uint16 S9xGetWord (uint32 Address) #endif } - switch ((int) GetAddress) + switch ((intptr_t) GetAddress) { case CMemory::MAP_PPU: return (S9xGetPPU (Address & 0xffff) | @@ -347,7 +347,7 @@ void S9xSetByte (uint8 Byte, uint32 Address) return; } - switch ((int) SetAddress) + switch ((intptr_t) SetAddress) { case CMemory::MAP_PPU: S9xSetPPU (Byte, Address & 0xffff); @@ -480,7 +480,7 @@ void S9xSetWord (uint16 Word, uint32 Address) return; } - switch ((int) SetAddress) + switch ((intptr_t) SetAddress) { case CMemory::MAP_PPU: S9xSetPPU ((uint8) Word, Address & 0xffff); @@ -601,7 +601,7 @@ uint8 *GetBasePointer (uint32 Address) { return s7r.bank50; } - switch ((int) GetAddress) + switch ((intptr_t) GetAddress) { case CMemory::MAP_SPC7110_DRAM: #ifdef SPC7110_DEBUG @@ -667,7 +667,7 @@ uint8 *S9xGetMemPointer (uint32 Address) if(Settings.SPC7110&&((Address&0x7FFFFF)==0x4800)) return s7r.bank50; - switch ((int) GetAddress) + switch ((intptr_t) GetAddress) { case CMemory::MAP_SPC7110_DRAM: #ifdef SPC7110_DEBUG @@ -727,7 +727,7 @@ void S9xSetPCBase (uint32 Address) return; } - switch ((int) GetAddress) + switch ((intptr_t) GetAddress) { case CMemory::MAP_PPU: CPU.PCBase = Memory.FillRAM; -- cgit v1.2.3