summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_device_address_space.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-03-08 04:42:40 +0100
committerGitHub <noreply@github.com>2023-03-08 04:42:40 +0100
commitd72d753b1a32ff590b4c2cb8a7f8cb0aa1cb85e1 (patch)
tree86c31b817e9e1f8412d26ac148e630066c8b55a6 /src/core/hle/kernel/k_device_address_space.h
parentMerge pull request #9918 from liamwhite/fwrapv (diff)
parentgeneral: fix type inconsistencies (diff)
downloadyuzu-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/hle/kernel/k_device_address_space.h')
-rw-r--r--src/core/hle/kernel/k_device_address_space.h4
1 files changed, 2 insertions, 2 deletions
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) {}