Merge branch 'miirefactor' into online

This commit is contained in:
PabloMK7 2023-07-28 22:31:20 +02:00
commit a230306376

View File

@ -9,8 +9,7 @@ namespace Mii {
#pragma pack(push, 1) #pragma pack(push, 1)
// Reference: https://github.com/devkitPro/libctru/blob/master/libctru/include/3ds/mii.h // Reference: https://github.com/devkitPro/libctru/blob/master/libctru/include/3ds/mii.h
class MiiData { struct MiiData {
public:
u8 magic; ///< Always 3? u8 magic; ///< Always 3?
/// Mii options /// Mii options
@ -215,8 +214,7 @@ public:
private: private:
MiiData mii_data; MiiData mii_data;
[[maybe_unused]] INSERT_PADDING_BYTES(0x2); u32_be crc16;
u16_be crc16;
template <class Archive> template <class Archive>
void serialize(Archive& ar, const unsigned int) { void serialize(Archive& ar, const unsigned int) {