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
+2 -2
View File
@@ -119,7 +119,7 @@ typedef struct {
s8 y;
} PACKED Coords8;
typedef union {
union SplitDWord {
s64 DWORD;
u64 DWORD_U;
struct {
@@ -128,7 +128,7 @@ typedef union {
struct {
u32 LO, HI;
} HALF_U;
} SplitDWord;
};
union SplitWord {
s32 WORD;