diff options
| author | Zephyron <zephyron@citron-emu.org> | 2025-05-01 15:43:42 +1000 |
|---|---|---|
| committer | Mike Lothian <mike@fireburn.co.uk> | 2025-05-12 12:46:19 +0100 |
| commit | 0963c722819df213de7408fabdc255547737c157 (patch) | |
| tree | d292c388cea5f86d69f032ce802589528d551ef3 | |
| parent | f82729864898483fde411eb291b6d0ae33b76d36 (diff) | |
api_version: Update constants for HOS 20.0.0
Updates version constants to match Nintendo Switch firmware 20.0.0:
- HOS version numbers (20.0.0)
- Version hash
- Display version string
- Display title string
Signed-off-by: Zephyron <zephyron@citron-emu.org>
| -rw-r--r-- | src/core/hle/api_version.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/api_version.h b/src/core/hle/api_version.h index 791f1f8ce..ee575dec8 100644 --- a/src/core/hle/api_version.h +++ b/src/core/hle/api_version.h @@ -12,9 +12,9 @@ namespace HLE::ApiVersion { // Horizon OS version constants. -constexpr u8 HOS_VERSION_MAJOR = 19; +constexpr u8 HOS_VERSION_MAJOR = 20; constexpr u8 HOS_VERSION_MINOR = 0; -constexpr u8 HOS_VERSION_MICRO = 1; +constexpr u8 HOS_VERSION_MICRO = 0; // NintendoSDK version constants. @@ -22,9 +22,9 @@ constexpr u8 SDK_REVISION_MAJOR = 1; constexpr u8 SDK_REVISION_MINOR = 0; constexpr char PLATFORM_STRING[] = "NX"; -constexpr char VERSION_HASH[] = "835c78223df116284ef7e36e8441760edc81729c"; -constexpr char DISPLAY_VERSION[] = "19.0.1"; -constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 19.0.1-1.0"; +constexpr char VERSION_HASH[] = "7147e1386c9b6c15d8f14e6ed68c4b9a7f28fb9b"; +constexpr char DISPLAY_VERSION[] = "20.0.0"; +constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 20.0.0-9.0"; // Atmosphere version constants. |
