From 2ee306e67d05eec463167195944a084f99d87a39 Mon Sep 17 00:00:00 2001 From: yabause Date: Tue, 30 Dec 2008 15:16:43 +0000 Subject: [PATCH] Merging r1306 (Fix up ARM9_struct definition.) into release branch. --- src/ARM9.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ARM9.h b/src/ARM9.h index 72955330a..ced7a1bce 100644 --- a/src/ARM9.h +++ b/src/ARM9.h @@ -3,7 +3,7 @@ #include "types.h" -typedef ALIGN(16) struct { +struct ALIGN(16) ARM9_struct { //ARM9 mem u8 ARM9_ITCM[0x8000]; u8 ARM9_DTCM[0x4000]; @@ -25,7 +25,7 @@ typedef ALIGN(16) struct { u8 *textureSlotAddr[4]; u8 *blank_memory[0x20000]; -} ARM9_struct; +}; extern ARM9_struct ARM9Mem;