Updated to Qt6 and added stubs for PP:S! and IFR

This commit is contained in:
Jarrod Norwell 2024-03-26 02:34:12 +08:00
parent 8114790363
commit b258cf941a
2 changed files with 7 additions and 7 deletions

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 = 17;
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[] = "30dd7d0584cd38e3a1db26a5719566d21d77110e";
constexpr char DISPLAY_VERSION[] = "12.1.0"; constexpr char DISPLAY_VERSION[] = "17.0.1";
constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 12.1.0-1.0"; constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 17.0.1-1.0";
// Atmosphere version constants. // Atmosphere version constants.

View File

@ -25,7 +25,7 @@
namespace VideoCommon { namespace VideoCommon {
constexpr std::array<char, 8> MAGIC_NUMBER{'y', 'u', 'z', 'u', 'c', 'a', 'c', 'h'}; constexpr std::array<char, 8> MAGIC_NUMBER{'s', 'u', 'd', 'a', 'c', 'h', 'i', '0'};
constexpr size_t INST_SIZE = sizeof(u64); constexpr size_t INST_SIZE = sizeof(u64);