Sfoglia il codice sorgente

Update k_code_memory.h

itsmeft24 4 anni fa
parent
commit
e05c86aa3c
1 ha cambiato i file con 6 aggiunte e 6 eliminazioni
  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:
 private:
-    KPageLinkedList m_page_group;
-    KProcess* m_owner;
-    VAddr m_address;
+    KPageLinkedList m_page_group{};
+    KProcess* m_owner{};
+    VAddr m_address{};
     KLightLock m_lock;
     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
 } // namespace Kernel