diff options
| author | 2023-03-23 10:00:19 -0400 | |
|---|---|---|
| committer | 2023-03-23 10:00:19 -0400 | |
| commit | c41a4baf06efe935f08331bc6f8ff6d80dc088f5 (patch) | |
| tree | a6580d41bd440b240b2f60db38fdeec60fca2eff /src/core/hle/kernel/kernel.h | |
| parent | Merge pull request #9962 from Kelebek1/disable_srgb (diff) | |
| parent | kernel: use KTypedAddress for addresses (diff) | |
| download | yuzu-c41a4baf06efe935f08331bc6f8ff6d80dc088f5.tar.gz yuzu-c41a4baf06efe935f08331bc6f8ff6d80dc088f5.tar.xz yuzu-c41a4baf06efe935f08331bc6f8ff6d80dc088f5.zip | |
Merge pull request #9964 from liamwhite/typed-address
kernel: use KTypedAddress for addresses
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 183a4d227..d5b08eeb5 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include "core/hardware_properties.h" | 14 | #include "core/hardware_properties.h" |
| 15 | #include "core/hle/kernel/k_auto_object.h" | 15 | #include "core/hle/kernel/k_auto_object.h" |
| 16 | #include "core/hle/kernel/k_slab_heap.h" | 16 | #include "core/hle/kernel/k_slab_heap.h" |
| 17 | #include "core/hle/kernel/k_typed_address.h" | ||
| 17 | #include "core/hle/kernel/svc_common.h" | 18 | #include "core/hle/kernel/svc_common.h" |
| 18 | 19 | ||
| 19 | namespace Core { | 20 | namespace Core { |
| @@ -185,7 +186,7 @@ public: | |||
| 185 | 186 | ||
| 186 | void InvalidateAllInstructionCaches(); | 187 | void InvalidateAllInstructionCaches(); |
| 187 | 188 | ||
| 188 | void InvalidateCpuInstructionCacheRange(VAddr addr, std::size_t size); | 189 | void InvalidateCpuInstructionCacheRange(KProcessAddress addr, std::size_t size); |
| 189 | 190 | ||
| 190 | /// Registers all kernel objects with the global emulation state, this is purely for tracking | 191 | /// Registers all kernel objects with the global emulation state, this is purely for tracking |
| 191 | /// leaks after emulation has been shutdown. | 192 | /// leaks after emulation has been shutdown. |