Make union consistent with other split union types.

This commit is contained in:
KEKW555 2024-01-06 23:43:08 +05:30 committed by GitHub
parent 99ef905ac3
commit f7576ba1d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;