summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-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