mirror of https://github.com/zeldaret/tmc.git
Make union consistent with other split union types.
This commit is contained in:
parent
99ef905ac3
commit
f7576ba1d0
|
@ -119,7 +119,7 @@ typedef struct {
|
||||||
s8 y;
|
s8 y;
|
||||||
} PACKED Coords8;
|
} PACKED Coords8;
|
||||||
|
|
||||||
typedef union {
|
union SplitDWord {
|
||||||
s64 DWORD;
|
s64 DWORD;
|
||||||
u64 DWORD_U;
|
u64 DWORD_U;
|
||||||
struct {
|
struct {
|
||||||
|
@ -128,7 +128,7 @@ typedef union {
|
||||||
struct {
|
struct {
|
||||||
u32 LO, HI;
|
u32 LO, HI;
|
||||||
} HALF_U;
|
} HALF_U;
|
||||||
} SplitDWord;
|
};
|
||||||
|
|
||||||
union SplitWord {
|
union SplitWord {
|
||||||
s32 WORD;
|
s32 WORD;
|
||||||
|
|
Loading…
Reference in New Issue