diff options
author | yuzubot <[email protected]> | 2024-03-04 00:57:21 +0000 |
---|---|---|
committer | yuzubot <[email protected]> | 2024-03-04 00:57:21 +0000 |
commit | adc597a7995508270628dbfc05afdf838bdc7cd6 (patch) | |
tree | c8c9b83baa57002efe2e5527a45135541c8bb836 /src/core/hle/kernel | |
parent | 276ceb26d0c58a00a0e65e3bf4d9c4371428f82d (diff) | |
download | yuzu-android-adc597a7995508270628dbfc05afdf838bdc7cd6.tar.gz yuzu-android-adc597a7995508270628dbfc05afdf838bdc7cd6.zip |
Merge yuzu-emu#13018
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r-- | src/core/hle/kernel/k_process.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp index cb9a11a63..80566b7e7 100644 --- a/src/core/hle/kernel/k_process.cpp +++ b/src/core/hle/kernel/k_process.cpp @@ -1170,6 +1170,7 @@ Result KProcess::LoadFromMetadata(const FileSys::ProgramMetadata& metadata, std: // Determine if we are an application. if (pool == KMemoryManager::Pool::Application) { flag |= Svc::CreateProcessFlag::IsApplication; + m_is_application = true; } // If we are 64-bit, create as such. |