mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 05:08:23 +00:00
Make plugins only load for apps and not applets (#265)
This commit is contained in:
parent
608383ec84
commit
7d00f47c5e
1 changed files with 5 additions and 1 deletions
|
@ -91,7 +91,11 @@ void PLG_LDR::serialize(Archive& ar, const unsigned int) {
|
||||||
SERIALIZE_IMPL(PLG_LDR)
|
SERIALIZE_IMPL(PLG_LDR)
|
||||||
|
|
||||||
void PLG_LDR::OnProcessRun(Kernel::Process& process, Kernel::KernelSystem& kernel) {
|
void PLG_LDR::OnProcessRun(Kernel::Process& process, Kernel::KernelSystem& kernel) {
|
||||||
if (!plgldr_context.is_enabled || plgldr_context.plugin_loaded) {
|
constexpr u32 TITLE_ID_APP_MASK = 0xFFFFFFED;
|
||||||
|
constexpr u32 TITLE_ID_APP_VALUE = 0x04000000;
|
||||||
|
if (!plgldr_context.is_enabled || plgldr_context.plugin_loaded ||
|
||||||
|
(static_cast<u32>(process.codeset->program_id >> 32) & TITLE_ID_APP_MASK) !=
|
||||||
|
TITLE_ID_APP_VALUE) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue