diff options
| author | 2023-03-23 19:58:48 -0400 | |
|---|---|---|
| committer | 2023-03-23 20:28:47 -0400 | |
| commit | 41d99aa89db7ee483112e49baa6c86e14adbd168 (patch) | |
| tree | 085ba1f2eb6a75c2b93d70834cc20d4b14f4d10f /src/core/memory | |
| parent | Merge pull request #9971 from Morph1984/q (diff) | |
| download | yuzu-41d99aa89db7ee483112e49baa6c86e14adbd168.tar.gz yuzu-41d99aa89db7ee483112e49baa6c86e14adbd168.tar.xz yuzu-41d99aa89db7ee483112e49baa6c86e14adbd168.zip | |
memory: rename global memory references to application memory
Diffstat (limited to 'src/core/memory')
| -rw-r--r-- | src/core/memory/cheat_engine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/memory/cheat_engine.cpp b/src/core/memory/cheat_engine.cpp index d1284a3a7..8742dd164 100644 --- a/src/core/memory/cheat_engine.cpp +++ b/src/core/memory/cheat_engine.cpp | |||
| @@ -39,11 +39,11 @@ StandardVmCallbacks::StandardVmCallbacks(System& system_, const CheatProcessMeta | |||
| 39 | StandardVmCallbacks::~StandardVmCallbacks() = default; | 39 | StandardVmCallbacks::~StandardVmCallbacks() = default; |
| 40 | 40 | ||
| 41 | void StandardVmCallbacks::MemoryRead(VAddr address, void* data, u64 size) { | 41 | void StandardVmCallbacks::MemoryRead(VAddr address, void* data, u64 size) { |
| 42 | system.Memory().ReadBlock(SanitizeAddress(address), data, size); | 42 | system.ApplicationMemory().ReadBlock(SanitizeAddress(address), data, size); |
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | void StandardVmCallbacks::MemoryWrite(VAddr address, const void* data, u64 size) { | 45 | void StandardVmCallbacks::MemoryWrite(VAddr address, const void* data, u64 size) { |
| 46 | system.Memory().WriteBlock(SanitizeAddress(address), data, size); | 46 | system.ApplicationMemory().WriteBlock(SanitizeAddress(address), data, size); |
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | u64 StandardVmCallbacks::HidKeysDown() { | 49 | u64 StandardVmCallbacks::HidKeysDown() { |