diff options
Diffstat (limited to 'include/gba')
-rwxr-xr-x | include/gba/types.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/gba/types.h b/include/gba/types.h index a7dbf3e..31f53ce 100755 --- a/include/gba/types.h +++ b/include/gba/types.h @@ -57,7 +57,9 @@ struct OamData u32 shape:2; // 0x40, 0x80 -> 0xC0 /*0x02*/ u32 x:9; - u32 matrixNum:5; // bits 3/4 are h-flip/v-flip if not in affine mode + u32 matrixNum:3; // This is not using its full 5 bits? + u32 hFlip:1; + u32 vFlip:1; u32 size:2; /*0x04*/ u16 tileNum:10; // 0x3FF |