all repos — mgba @ 475af6fde27b12dad701ee1cb67ddadf462e0755

mGBA Game Boy Advance Emulator

Squelch some warnings
Jeffrey Pfau jeffrey@endrift.com
Sun, 14 Apr 2013 04:22:53 -0700
commit

475af6fde27b12dad701ee1cb67ddadf462e0755

parent

201d34a4d7580f1d2ab1cd357580c365324fb04c

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M src/gba.hsrc/gba.h

@@ -215,10 +215,10 @@ struct GBAMemory {

struct ARMMemory d; struct GBA* p; - int32_t* bios; - int32_t* wram; - int32_t* iwram; - int32_t* rom; + uint32_t* bios; + uint32_t* wram; + uint32_t* iwram; + uint32_t* rom; uint16_t io[SIZE_IO >> 1]; };