diff options
author | Liam <byteslice@airmail.cc> | 2023-03-08 02:03:24 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-03-08 02:05:19 +0100 |
commit | ba4213d956ff138ec6392dc4145970e8a3cd1ba6 (patch) | |
tree | 3454be719887e09c5745887cab59c89e11dc28ef /src/core/hle/kernel | |
parent | Merge pull request #9889 from Morph1984/time-is-ticking (diff) | |
download | yuzu-ba4213d956ff138ec6392dc4145970e8a3cd1ba6.tar yuzu-ba4213d956ff138ec6392dc4145970e8a3cd1ba6.tar.gz yuzu-ba4213d956ff138ec6392dc4145970e8a3cd1ba6.tar.bz2 yuzu-ba4213d956ff138ec6392dc4145970e8a3cd1ba6.tar.lz yuzu-ba4213d956ff138ec6392dc4145970e8a3cd1ba6.tar.xz yuzu-ba4213d956ff138ec6392dc4145970e8a3cd1ba6.tar.zst yuzu-ba4213d956ff138ec6392dc4145970e8a3cd1ba6.zip |
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r-- | src/core/hle/kernel/k_address_space_info.cpp | 4 | ||||
-rw-r--r-- | src/core/hle/kernel/k_address_space_info.h | 2 | ||||
-rw-r--r-- | src/core/hle/kernel/k_device_address_space.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/kernel/k_address_space_info.cpp b/src/core/hle/kernel/k_address_space_info.cpp index 97972ebae..c36eb5dc4 100644 --- a/src/core/hle/kernel/k_address_space_info.cpp +++ b/src/core/hle/kernel/k_address_space_info.cpp @@ -44,11 +44,11 @@ const KAddressSpaceInfo& GetAddressSpaceInfo(size_t width, KAddressSpaceInfo::Ty } // namespace -uintptr_t KAddressSpaceInfo::GetAddressSpaceStart(size_t width, KAddressSpaceInfo::Type type) { +std::size_t KAddressSpaceInfo::GetAddressSpaceStart(size_t width, KAddressSpaceInfo::Type type) { return GetAddressSpaceInfo(width, type).address; } -size_t KAddressSpaceInfo::GetAddressSpaceSize(size_t width, KAddressSpaceInfo::Type type) { +std::size_t KAddressSpaceInfo::GetAddressSpaceSize(size_t width, KAddressSpaceInfo::Type type) { return GetAddressSpaceInfo(width, type).size; } diff --git a/src/core/hle/kernel/k_address_space_info.h b/src/core/hle/kernel/k_address_space_info.h index 69e9d77f2..9a26f6b90 100644 --- a/src/core/hle/kernel/k_address_space_info.h +++ b/src/core/hle/kernel/k_address_space_info.h @@ -18,7 +18,7 @@ struct KAddressSpaceInfo final { Count, }; - static u64 GetAddressSpaceStart(std::size_t width, Type type); + static std::size_t GetAddressSpaceStart(std::size_t width, Type type); static std::size_t GetAddressSpaceSize(std::size_t width, Type type); const std::size_t bit_width{}; diff --git a/src/core/hle/kernel/k_device_address_space.h b/src/core/hle/kernel/k_device_address_space.h index 4709df995..b4a014c38 100644 --- a/src/core/hle/kernel/k_device_address_space.h +++ b/src/core/hle/kernel/k_device_address_space.h @@ -21,9 +21,9 @@ public: ~KDeviceAddressSpace(); Result Initialize(u64 address, u64 size); - void Finalize(); + void Finalize() override; - bool IsInitialized() const { + bool IsInitialized() const override { return m_is_initialized; } static void PostDestroy(uintptr_t arg) {} |