diff options
author | bunnei <bunneidev@gmail.com> | 2020-04-09 01:18:10 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2020-04-17 06:59:32 +0200 |
commit | 11c02a50e9fa71e4bfac1268a15ee424501b6118 (patch) | |
tree | 890ea4242933bd374e95fec7f2f0a1f4a89deffb /src/core/core.h | |
parent | kernel: transfer_memory: Refactor for new VMM. (diff) | |
download | yuzu-11c02a50e9fa71e4bfac1268a15ee424501b6118.tar yuzu-11c02a50e9fa71e4bfac1268a15ee424501b6118.tar.gz yuzu-11c02a50e9fa71e4bfac1268a15ee424501b6118.tar.bz2 yuzu-11c02a50e9fa71e4bfac1268a15ee424501b6118.tar.lz yuzu-11c02a50e9fa71e4bfac1268a15ee424501b6118.tar.xz yuzu-11c02a50e9fa71e4bfac1268a15ee424501b6118.tar.zst yuzu-11c02a50e9fa71e4bfac1268a15ee424501b6118.zip |
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h index 6cd93000a..acc53d6a1 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -258,10 +258,10 @@ public: const Kernel::GlobalScheduler& GlobalScheduler() const; /// Gets the manager for the guest device memory - DeviceMemory& GetDeviceMemory(); + Core::DeviceMemory& DeviceMemory(); /// Gets the manager for the guest device memory - const DeviceMemory& GetDeviceMemory() const; + const Core::DeviceMemory& DeviceMemory() const; /// Provides a pointer to the current process Kernel::Process* CurrentProcess(); |