diff options
| author | 2020-05-20 19:21:27 -0400 | |
|---|---|---|
| committer | 2020-05-20 19:21:27 -0400 | |
| commit | ae61e47cbadbd43656f36d3a517139f4fe78f3c2 (patch) | |
| tree | 91dc6543f3e699faea0d29d3ece6a27d371db6ad | |
| parent | Merge pull request #3926 from ogniK5377/keyboard-states (diff) | |
| parent | file_sys: Update SystemVersion archive to version 10.0.2 (diff) | |
| download | yuzu-ae61e47cbadbd43656f36d3a517139f4fe78f3c2.tar.gz yuzu-ae61e47cbadbd43656f36d3a517139f4fe78f3c2.tar.xz yuzu-ae61e47cbadbd43656f36d3a517139f4fe78f3c2.zip | |
Merge pull request #3946 from ogniK5377/sysverdat-10-0-2
file_sys: Update SystemVersion archive to version 10.0.2
Diffstat (limited to '')
| -rw-r--r-- | src/core/file_sys/system_archive/system_version.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/file_sys/system_archive/system_version.cpp b/src/core/file_sys/system_archive/system_version.cpp index 6e22f97b0..aa313de66 100644 --- a/src/core/file_sys/system_archive/system_version.cpp +++ b/src/core/file_sys/system_archive/system_version.cpp | |||
| @@ -12,17 +12,17 @@ namespace SystemVersionData { | |||
| 12 | // This section should reflect the best system version to describe yuzu's HLE api. | 12 | // This section should reflect the best system version to describe yuzu's HLE api. |
| 13 | // TODO(DarkLordZach): Update when HLE gets better. | 13 | // TODO(DarkLordZach): Update when HLE gets better. |
| 14 | 14 | ||
| 15 | constexpr u8 VERSION_MAJOR = 5; | 15 | constexpr u8 VERSION_MAJOR = 10; |
| 16 | constexpr u8 VERSION_MINOR = 1; | 16 | constexpr u8 VERSION_MINOR = 0; |
| 17 | constexpr u8 VERSION_MICRO = 0; | 17 | constexpr u8 VERSION_MICRO = 2; |
| 18 | 18 | ||
| 19 | constexpr u8 REVISION_MAJOR = 3; | 19 | constexpr u8 REVISION_MAJOR = 1; |
| 20 | constexpr u8 REVISION_MINOR = 0; | 20 | constexpr u8 REVISION_MINOR = 0; |
| 21 | 21 | ||
| 22 | constexpr char PLATFORM_STRING[] = "NX"; | 22 | constexpr char PLATFORM_STRING[] = "NX"; |
| 23 | constexpr char VERSION_HASH[] = "23f9df53e25709d756e0c76effcb2473bd3447dd"; | 23 | constexpr char VERSION_HASH[] = "f90143fa8bbc061d4f68c35f95f04f8080c0ecdc"; |
| 24 | constexpr char DISPLAY_VERSION[] = "5.1.0"; | 24 | constexpr char DISPLAY_VERSION[] = "10.0.2"; |
| 25 | constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 5.1.0-3.0"; | 25 | constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 10.0.2-1.0"; |
| 26 | 26 | ||
| 27 | } // namespace SystemVersionData | 27 | } // namespace SystemVersionData |
| 28 | 28 | ||