瀏覽代碼

Update k_code_memory.h

itsmeft24 4 年之前
父節點
當前提交
e05c86aa3c
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      src/core/hle/kernel/k_code_memory.h

+ 6 - 6
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