From b34605feb937afa898dafc49c5cfc51649186505 Mon Sep 17 00:00:00 2001 From: Pablo Curiel Date: Thu, 12 Dec 2024 14:10:21 +0100 Subject: [PATCH] gamecard: update GameCardUid struct --- include/core/gamecard.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/core/gamecard.h b/include/core/gamecard.h index 0e112ae..3867352 100644 --- a/include/core/gamecard.h +++ b/include/core/gamecard.h @@ -109,14 +109,14 @@ typedef enum { } GameCardUidCardType; typedef struct { - u8 maker_code; ///< GameCardUidMakerCode. + u8 maker_code; ///< GameCardUidMakerCode. u8 version; - u8 card_type; ///< GameCardUidCardType. + u8 card_type; ///< GameCardUidCardType. u8 unique_data[0x9]; u32 random; u8 platform_flag; u8 reserved[0xB]; - FsCardId1 card_id_1; ///< Are we sure about this? + FsCardId1 card_id_1_mirror; ///< This field mirrors bit 5 of FsCardId1MemoryType. u8 mac[0x20]; } GameCardUid;