mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-03 08:08:39 -04:00
Enforce upper bound on application tid range
This commit is contained in:
parent
1d0efbf456
commit
6027ff243d
3 changed files with 5 additions and 4 deletions
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include <cstring>
|
||||
#include <switch.h>
|
||||
#include <stratosphere.hpp>
|
||||
#include <strings.h>
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
@ -309,7 +310,7 @@ void ContentManagement::TryMountSdCard() {
|
|||
}
|
||||
|
||||
bool ContentManagement::ShouldReplaceWithHBL(u64 tid) {
|
||||
return g_mounted_hbl_nsp && ((g_override_any_app && tid >= 0x0100000000010000) || (!g_override_any_app && tid == g_override_hbl_tid));
|
||||
return g_mounted_hbl_nsp && ((g_override_any_app && IsApplicationTid(tid)) || (!g_override_any_app && tid == g_override_hbl_tid));
|
||||
}
|
||||
|
||||
bool ContentManagement::ShouldOverrideContents(u64 tid) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue