summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar itsmeft242021-12-07 16:58:23 -0500
committerGravatar GitHub2021-12-07 16:58:23 -0500
commite05c86aa3cbd7a0da638111d2520b93b7f757f22 (patch)
tree4c65636909444b2245fe3c929b97e503656ae6d3
parentmake KCodeMemory::GetSourceAddress const (diff)
downloadyuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.tar.gz
yuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.tar.xz
yuzu-e05c86aa3cbd7a0da638111d2520b93b7f757f22.zip
Update k_code_memory.h
-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:
54 } 54 }
55 55
56private: 56private:
57 KPageLinkedList m_page_group; 57 KPageLinkedList m_page_group{};
58 KProcess* m_owner; 58 KProcess* m_owner{};
59 VAddr m_address; 59 VAddr m_address{};
60 KLightLock m_lock; 60 KLightLock m_lock;
61 bool m_is_initialized; 61 bool m_is_initialized{};
62 bool m_is_owner_mapped; 62 bool m_is_owner_mapped{};
63 bool m_is_mapped; 63 bool m_is_mapped{};
64}; 64};
65 65
66} // namespace Kernel 66} // namespace Kernel