diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-03-08 04:42:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-08 04:42:40 +0100 |
commit | d72d753b1a32ff590b4c2cb8a7f8cb0aa1cb85e1 (patch) | |
tree | 86c31b817e9e1f8412d26ac148e630066c8b55a6 /src/core | |
parent | Merge pull request #9918 from liamwhite/fwrapv (diff) | |
parent | general: fix type inconsistencies (diff) | |
download | yuzu-d72d753b1a32ff590b4c2cb8a7f8cb0aa1cb85e1.tar yuzu-d72d753b1a32ff590b4c2cb8a7f8cb0aa1cb85e1.tar.gz yuzu-d72d753b1a32ff590b4c2cb8a7f8cb0aa1cb85e1.tar.bz2 yuzu-d72d753b1a32ff590b4c2cb8a7f8cb0aa1cb85e1.tar.lz yuzu-d72d753b1a32ff590b4c2cb8a7f8cb0aa1cb85e1.tar.xz yuzu-d72d753b1a32ff590b4c2cb8a7f8cb0aa1cb85e1.tar.zst yuzu-d72d753b1a32ff590b4c2cb8a7f8cb0aa1cb85e1.zip |
Diffstat (limited to 'src/core')
-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) {} |