Add new data types for Nintendo Wii and GameCube: introduce WiiPartitionKeyMap and NgcwJunkMap for enhanced region mapping

This commit is contained in:
2026-03-16 18:31:27 +00:00
parent 2ebe8127bd
commit 53bbb3c7a6
2 changed files with 5 additions and 1 deletions

View File

@@ -1080,7 +1080,9 @@ typedef enum
kMediaTagPs3Pic = 80, ///< PS3 PIC data (115 bytes, from disc lead-in)
kMediaTagPs3EncryptionMap = 81, ///< PS3 encryption region map (serialized from sector 0)
kMediaTagWiiUPartitionKeyMap = 82, ///< Nintendo Wii U partition-to-key mapping with regions
MaxMediaTag = kMediaTagWiiUPartitionKeyMap
kMediaTagWiiPartitionKeyMap = 83, ///< Nintendo Wii partition-to-key mapping with regions
kMediaTagNgcwJunkMap = 84, ///< Nintendo GameCube/Wii junk region map with LFG seeds
MaxMediaTag = kMediaTagNgcwJunkMap
} MediaTagType;
/** @} */ /* end of MediaTags group */

View File

@@ -141,6 +141,8 @@ typedef enum
kDataTypePs3Pic = 96, ///< PS3 PIC data (115 bytes, from disc lead-in)
kDataTypePs3EncryptionMap = 97, ///< PS3 encryption region map (serialized from sector 0)
kDataTypeWiiUPartitionKeyMap = 98, ///< Nintendo Wii U partition-to-key mapping with regions
kDataTypeWiiPartitionKeyMap = 99, ///< Nintendo Wii partition-to-key mapping with regions
kDataTypeNgcwJunkMap = 100, ///< Nintendo GameCube/Wii junk region map with LFG seeds
} DataType;
/**