diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/k_code_memory.h | 12 |
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 | ||
| 56 | private: | 56 | private: |
| 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 |