CPU/GTE: Remove unnecessary struct padding

This commit is contained in:
Stenzek
2025-10-09 21:52:24 +10:00
parent 8bce5b0a55
commit 27d26794d9

View File

@@ -58,7 +58,6 @@ union Regs
u32 r32[NUM_DATA_REGS + NUM_CONTROL_REGS];
#pragma pack(push, 1)
struct
{
s16 V0[3]; // 0-1
@@ -124,7 +123,6 @@ union Regs
u16 pad23; // 62
FLAGS FLAG; // 63
};
#pragma pack(pop)
};
static_assert(sizeof(Regs) == (sizeof(u32) * NUM_REGS));