Fix incorrect remapping register layout

This commit is contained in:
TheASVigilante 2023-02-19 15:01:39 +01:00 committed by Billy Laws
parent 55176c2a72
commit 5c4bb1c44e

View file

@ -182,8 +182,6 @@ namespace skyline::soc::gm20b::engine {
NoWrite = 6
};
Address address;
Swizzle dstX : 3;
u8 _pad0_ : 1;
Swizzle dstY : 3;
@ -212,7 +210,7 @@ namespace skyline::soc::gm20b::engine {
return numDstComponentsMinusOne + 1;
}
};
static_assert(sizeof(RemapComponents) == 0xC);
static_assert(sizeof(RemapComponents) == 0x4);
Register<0x1C2, RemapComponents> remapComponents;