diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-02-11 16:28:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-11 16:28:50 +0100 |
commit | 709879cfc102f37f2955503b41863f0d3711a398 (patch) | |
tree | 4e28c01246e7b9051b6ae78f54930b31cc306afc /src/core/hle/kernel/k_process.cpp | |
parent | Merge pull request #9768 from merryhime/biquad-rounding (diff) | |
parent | core: kernel: k_process: Use application system resource. (diff) | |
download | yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.gz yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.bz2 yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.lz yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.xz yuzu-709879cfc102f37f2955503b41863f0d3711a398.tar.zst yuzu-709879cfc102f37f2955503b41863f0d3711a398.zip |
Diffstat (limited to 'src/core/hle/kernel/k_process.cpp')
-rw-r--r-- | src/core/hle/kernel/k_process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp index e201bb0cd..0e4283a0c 100644 --- a/src/core/hle/kernel/k_process.cpp +++ b/src/core/hle/kernel/k_process.cpp @@ -370,7 +370,7 @@ Result KProcess::LoadFromMetadata(const FileSys::ProgramMetadata& metadata, std: // Initialize proces address space if (const Result result{page_table.InitializeForProcess( metadata.GetAddressSpaceType(), false, false, false, KMemoryManager::Pool::Application, - 0x8000000, code_size, &kernel.GetSystemSystemResource(), resource_limit)}; + 0x8000000, code_size, &kernel.GetAppSystemResource(), resource_limit)}; result.IsError()) { R_RETURN(result); } |