mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-24 20:22:39 +02:00
hos: fix c/p error'
This commit is contained in:
parent
0447aa67a5
commit
adf5cd345d
@ -43,8 +43,8 @@ namespace ams::hos {
|
||||
/* We can consider only recognizing major in the future, but micro seems safe to ignore as
|
||||
/* there are no breaking IPC changes in minor updates. */
|
||||
{
|
||||
constexpr u32 MaxMajor = (static_cast<u32>(g_hos_version) >> 24) & 0xFF;
|
||||
constexpr u32 MaxMinor = (static_cast<u32>(g_hos_version) >> 16) & 0xFF;
|
||||
constexpr u32 MaxMajor = (static_cast<u32>(hos::Version_Max) >> 24) & 0xFF;
|
||||
constexpr u32 MaxMinor = (static_cast<u32>(hos::Version_Max) >> 16) & 0xFF;
|
||||
|
||||
const u32 major = (static_cast<u32>(g_hos_version) >> 24) & 0xFF;
|
||||
const u32 minor = (static_cast<u32>(g_hos_version) >> 16) & 0xFF;
|
||||
|
Loading…
Reference in New Issue
Block a user