summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoritsmeft24 <57544858+itsmeft24@users.noreply.github.com>2021-12-07 22:58:23 +0100
committerGitHub <noreply@github.com>2021-12-07 22:58:23 +0100
commite05c86aa3cbd7a0da638111d2520b93b7f757f22 (patch)
tree4c65636909444b2245fe3c929b97e503656ae6d3
parentmake KCodeMemory::GetSourceAddress const (diff)
downloadyuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.tar
yuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.tar.gz
yuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.tar.bz2
yuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.tar.lz
yuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.tar.xz
yuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.tar.zst
yuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.zip
-rw-r--r--src/core/hle/kernel/k_code_memory.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/kernel/k_code_memory.h b/src/core/hle/kernel/k_code_memory.h
index c45939afa..e0ba19a53 100644
--- a/src/core/hle/kernel/k_code_memory.h
+++ b/src/core/hle/kernel/k_code_memory.h
@@ -54,13 +54,13 @@ public:
}
private:
- KPageLinkedList m_page_group;
- KProcess* m_owner;
- VAddr m_address;
+ KPageLinkedList m_page_group{};
+ KProcess* m_owner{};
+ VAddr m_address{};
KLightLock m_lock;
- bool m_is_initialized;
- bool m_is_owner_mapped;
- bool m_is_mapped;
+ bool m_is_initialized{};
+ bool m_is_owner_mapped{};
+ bool m_is_mapped{};
};
} // namespace Kernel