mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-04 23:35:12 +01:00
Fix MacroInterpreter::MethodAddress
Bitfield Padding
Due to compiler alignment issues, the bitfield member `increment` of `MacroInterpreter::MethodAddress` was mistakenly padded and moved to the next byte. This has now been fixed by making its type `u16` like the member prior to it to prevent natural alignment from kicking in.
This commit is contained in:
parent
26966287c7
commit
107d337d77
@ -90,7 +90,6 @@ namespace skyline::soc::gm20b::engine::maxwell3d {
|
||||
} bitfield;
|
||||
};
|
||||
static_assert(sizeof(Opcode) == sizeof(u32));
|
||||
#pragma pack(pop)
|
||||
|
||||
/**
|
||||
* @brief Metadata about the Maxwell 3D method to be called in 'Send'
|
||||
@ -99,9 +98,11 @@ namespace skyline::soc::gm20b::engine::maxwell3d {
|
||||
u32 raw;
|
||||
struct {
|
||||
u16 address : 12;
|
||||
u8 increment : 6;
|
||||
u16 increment : 6;
|
||||
};
|
||||
};
|
||||
static_assert(sizeof(MethodAddress) == sizeof(u32));
|
||||
#pragma pack(pop)
|
||||
|
||||
Maxwell3D &maxwell3D; //!< A reference to the parent engine object
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user