summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar liamwhite2023-03-23 10:00:19 -0400
committerGravatar GitHub2023-03-23 10:00:19 -0400
commitc41a4baf06efe935f08331bc6f8ff6d80dc088f5 (patch)
treea6580d41bd440b240b2f60db38fdeec60fca2eff /src/core/core.h
parentMerge pull request #9962 from Kelebek1/disable_srgb (diff)
parentkernel: use KTypedAddress for addresses (diff)
downloadyuzu-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/core.h')
-rw-r--r--src/core/core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 5843696d4..7032240be 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -172,7 +172,7 @@ public:
172 */ 172 */
173 void InvalidateCpuInstructionCaches(); 173 void InvalidateCpuInstructionCaches();
174 174
175 void InvalidateCpuInstructionCacheRange(VAddr addr, std::size_t size); 175 void InvalidateCpuInstructionCacheRange(u64 addr, std::size_t size);
176 176
177 /// Shutdown the main emulated process. 177 /// Shutdown the main emulated process.
178 void ShutdownMainProcess(); 178 void ShutdownMainProcess();
@@ -353,7 +353,7 @@ public:
353 [[nodiscard]] FileSys::VirtualFilesystem GetFilesystem() const; 353 [[nodiscard]] FileSys::VirtualFilesystem GetFilesystem() const;
354 354
355 void RegisterCheatList(const std::vector<Memory::CheatEntry>& list, 355 void RegisterCheatList(const std::vector<Memory::CheatEntry>& list,
356 const std::array<u8, 0x20>& build_id, VAddr main_region_begin, 356 const std::array<u8, 0x20>& build_id, u64 main_region_begin,
357 u64 main_region_size); 357 u64 main_region_size);
358 358
359 void SetAppletFrontendSet(Service::AM::Applets::AppletFrontendSet&& set); 359 void SetAppletFrontendSet(Service::AM::Applets::AppletFrontendSet&& set);