diff options
| author | itsmeft24 <57544858+itsmeft24@users.noreply.github.com> | 2021-12-07 16:58:23 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-07 16:58:23 -0500 | 
| commit | e05c86aa3cbd7a0da638111d2520b93b7f757f22 (patch) | |
| tree | 4c65636909444b2245fe3c929b97e503656ae6d3 | |
| parent | d19724688022952c37143dc189240916910b0c6f (diff) | |
Update k_code_memory.h
| -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:      }  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 | 
