chore(HLE): Update HLE API version constants

- Updated Horizon OS version to 19.0.1 and NintendoSDK version to 1.0. Adjusted `VERSION_HASH`, `DISPLAY_VERSION`, and `DISPLAY_TITLE` to match the new firmware versions.

ref: fcb6444037
This commit is contained in:
EmulationEnjoyer 2024-11-12 21:32:29 +00:00 committed by MrPurple666
parent ce2eeb0d73
commit a757856a8a

View file

@ -11,9 +11,9 @@ namespace HLE::ApiVersion {
// Horizon OS version constants. // Horizon OS version constants.
constexpr u8 HOS_VERSION_MAJOR = 12; constexpr u8 HOS_VERSION_MAJOR = 19;
constexpr u8 HOS_VERSION_MINOR = 1; constexpr u8 HOS_VERSION_MINOR = 0;
constexpr u8 HOS_VERSION_MICRO = 0; constexpr u8 HOS_VERSION_MICRO = 1;
// NintendoSDK version constants. // NintendoSDK version constants.
@ -21,9 +21,9 @@ constexpr u8 SDK_REVISION_MAJOR = 1;
constexpr u8 SDK_REVISION_MINOR = 0; constexpr u8 SDK_REVISION_MINOR = 0;
constexpr char PLATFORM_STRING[] = "NX"; constexpr char PLATFORM_STRING[] = "NX";
constexpr char VERSION_HASH[] = "76b10c2dab7d3aa73fc162f8dff1655e6a21caf4"; constexpr char VERSION_HASH[] = "835c78223df116284ef7e36e8441760edc81729c";
constexpr char DISPLAY_VERSION[] = "12.1.0"; constexpr char DISPLAY_VERSION[] = "19.0.1";
constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 12.1.0-1.0"; constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 19.0.1-1.0";
// Atmosphere version constants. // Atmosphere version constants.