From 1d2be0a2eb43a345422f89e29f6ecb9ecda40aff Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 7 Apr 2021 17:11:01 -0700 Subject: [PATCH] kern: mesosphere now implements kernel/sdk 12.3 --- libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp | 2 +- libraries/libvapours/include/vapours/svc/svc_version.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp b/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp index b8478f5b5..27ffe1a2a 100644 --- a/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp +++ b/libraries/libmesosphere/include/mesosphere/kern_k_thread.hpp @@ -330,7 +330,7 @@ namespace ams::kern { } ALWAYS_INLINE void ClearDpc(DpcFlag flag) { - this->GetStackParameters().dpc_flags.fetch_and(~flag);; + this->GetStackParameters().dpc_flags.fetch_and(~flag); } ALWAYS_INLINE u8 GetDpc() const { diff --git a/libraries/libvapours/include/vapours/svc/svc_version.hpp b/libraries/libvapours/include/vapours/svc/svc_version.hpp index 1a5a5ce1f..52675b5ac 100644 --- a/libraries/libvapours/include/vapours/svc/svc_version.hpp +++ b/libraries/libvapours/include/vapours/svc/svc_version.hpp @@ -57,8 +57,8 @@ namespace ams::svc { /* This is the highest SVC version supported by Atmosphere, to be updated on new kernel releases. */ /* NOTE: Official kernel versions have SVC major = SDK major + 4, SVC minor = SDK minor. */ - constexpr inline u32 SupportedKernelMajorVersion = ConvertToSvcMajorVersion(11); - constexpr inline u32 SupportedKernelMinorVersion = ConvertToSvcMinorVersion( 4); + constexpr inline u32 SupportedKernelMajorVersion = ConvertToSvcMajorVersion(12); + constexpr inline u32 SupportedKernelMinorVersion = ConvertToSvcMinorVersion( 3); constexpr inline u32 SupportedKernelVersion = EncodeKernelVersion(SupportedKernelMajorVersion, SupportedKernelMinorVersion);