bump nca key generation values for fw 20.0.0

This commit is contained in:
ITotalJustice
2025-05-02 00:02:09 +01:00
parent 96e5a7081b
commit f310704472
2 changed files with 2 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ enum KeyGeneration {
KeyGeneration_1700 = 0x11,
KeyGeneration_1800 = 0x12,
KeyGeneration_1900 = 0x13,
KeyGeneration_2000 = 0x14,
KeyGeneration_Invalid = 0xFF,
};

View File

@@ -172,6 +172,7 @@ auto GetKeyGenStr(u8 key_gen) -> const char* {
case KeyGeneration_1700: return "17.0.0";
case KeyGeneration_1800: return "18.0.0";
case KeyGeneration_1900: return "19.0.0";
case KeyGeneration_2000: return "20.0.0";
}
return "Unknown";