summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-04 22:52:33 +0100
committerLioncash <mathew1800@gmail.com>2019-03-04 22:52:36 +0100
commitf59040d7525152d53a0b47a4841c76877c4e4bac (patch)
treea7c15edf202f819740e9e1ecf2322094895c07a6 /src
parentMerge pull request #2165 from ReinUsesLisp/unbind-tex (diff)
downloadyuzu-f59040d7525152d53a0b47a4841c76877c4e4bac.tar
yuzu-f59040d7525152d53a0b47a4841c76877c4e4bac.tar.gz
yuzu-f59040d7525152d53a0b47a4841c76877c4e4bac.tar.bz2
yuzu-f59040d7525152d53a0b47a4841c76877c4e4bac.tar.lz
yuzu-f59040d7525152d53a0b47a4841c76877c4e4bac.tar.xz
yuzu-f59040d7525152d53a0b47a4841c76877c4e4bac.tar.zst
yuzu-f59040d7525152d53a0b47a4841c76877c4e4bac.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/shared_memory.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/kernel/shared_memory.cpp b/src/core/hle/kernel/shared_memory.cpp
index 22d0c1dd5..62861da36 100644
--- a/src/core/hle/kernel/shared_memory.cpp
+++ b/src/core/hle/kernel/shared_memory.cpp
@@ -6,7 +6,6 @@
#include "common/assert.h"
#include "common/logging/log.h"
-#include "core/core.h"
#include "core/hle/kernel/errors.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/shared_memory.h"
@@ -34,8 +33,8 @@ SharedPtr<SharedMemory> SharedMemory::Create(KernelCore& kernel, Process* owner_
shared_memory->backing_block_offset = 0;
// Refresh the address mappings for the current process.
- if (Core::CurrentProcess() != nullptr) {
- Core::CurrentProcess()->VMManager().RefreshMemoryBlockMappings(
+ if (kernel.CurrentProcess() != nullptr) {
+ kernel.CurrentProcess()->VMManager().RefreshMemoryBlockMappings(
shared_memory->backing_block.get());
}
} else {