diff options
| author | 2021-07-31 20:12:35 -0400 | |
|---|---|---|
| committer | 2021-07-31 20:12:35 -0400 | |
| commit | 7cf0958b062d2cd264af1f6420d19d320574b021 (patch) | |
| tree | 8ea2eb446172d205458e765e53d2ce6df25eedb1 | |
| parent | Merge pull request #6752 from Morph1984/pt-br (diff) | |
| parent | hle: api_version: Update HOS version to 12.1.0 (diff) | |
| download | yuzu-7cf0958b062d2cd264af1f6420d19d320574b021.tar.gz yuzu-7cf0958b062d2cd264af1f6420d19d320574b021.tar.xz yuzu-7cf0958b062d2cd264af1f6420d19d320574b021.zip | |
Merge pull request #6788 from Morph1984/hle_api_12.1.0
hle: api_version: Update HOS version to 12.1.0
| -rw-r--r-- | src/core/hle/api_version.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/hle/api_version.h b/src/core/hle/api_version.h index 5e10a7ad9..43d5670a9 100644 --- a/src/core/hle/api_version.h +++ b/src/core/hle/api_version.h | |||
| @@ -12,9 +12,9 @@ namespace HLE::ApiVersion { | |||
| 12 | 12 | ||
| 13 | // Horizon OS version constants. | 13 | // Horizon OS version constants. |
| 14 | 14 | ||
| 15 | constexpr u8 HOS_VERSION_MAJOR = 11; | 15 | constexpr u8 HOS_VERSION_MAJOR = 12; |
| 16 | constexpr u8 HOS_VERSION_MINOR = 0; | 16 | constexpr u8 HOS_VERSION_MINOR = 1; |
| 17 | constexpr u8 HOS_VERSION_MICRO = 1; | 17 | constexpr u8 HOS_VERSION_MICRO = 0; |
| 18 | 18 | ||
| 19 | // NintendoSDK version constants. | 19 | // NintendoSDK version constants. |
| 20 | 20 | ||
| @@ -22,15 +22,15 @@ constexpr u8 SDK_REVISION_MAJOR = 1; | |||
| 22 | constexpr u8 SDK_REVISION_MINOR = 0; | 22 | constexpr u8 SDK_REVISION_MINOR = 0; |
| 23 | 23 | ||
| 24 | constexpr char PLATFORM_STRING[] = "NX"; | 24 | constexpr char PLATFORM_STRING[] = "NX"; |
| 25 | constexpr char VERSION_HASH[] = "69103fcb2004dace877094c2f8c29e6113be5dbf"; | 25 | constexpr char VERSION_HASH[] = "76b10c2dab7d3aa73fc162f8dff1655e6a21caf4"; |
| 26 | constexpr char DISPLAY_VERSION[] = "11.0.1"; | 26 | constexpr char DISPLAY_VERSION[] = "12.1.0"; |
| 27 | constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 11.0.1-1.0"; | 27 | constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 12.1.0-1.0"; |
| 28 | 28 | ||
| 29 | // Atmosphere version constants. | 29 | // Atmosphere version constants. |
| 30 | 30 | ||
| 31 | constexpr u8 ATMOSPHERE_RELEASE_VERSION_MAJOR = 0; | 31 | constexpr u8 ATMOSPHERE_RELEASE_VERSION_MAJOR = 0; |
| 32 | constexpr u8 ATMOSPHERE_RELEASE_VERSION_MINOR = 19; | 32 | constexpr u8 ATMOSPHERE_RELEASE_VERSION_MINOR = 19; |
| 33 | constexpr u8 ATMOSPHERE_RELEASE_VERSION_MICRO = 4; | 33 | constexpr u8 ATMOSPHERE_RELEASE_VERSION_MICRO = 5; |
| 34 | 34 | ||
| 35 | constexpr u32 GetTargetFirmware() { | 35 | constexpr u32 GetTargetFirmware() { |
| 36 | return u32{HOS_VERSION_MAJOR} << 24 | u32{HOS_VERSION_MINOR} << 16 | | 36 | return u32{HOS_VERSION_MAJOR} << 24 | u32{HOS_VERSION_MINOR} << 16 | |