implement full character backups on GC

This commit is contained in:
Martin Michelsen
2024-04-06 19:52:22 -07:00
parent 91131f8b36
commit af4d3a3325
64 changed files with 3155 additions and 2208 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ struct TObjectVTable {
be_uint32_t update;
be_uint32_t render;
be_uint32_t render_shadow;
} __attribute__((packed));
} __packed_ws__(TObjectVTable, 0x18);
struct TObject {
be_uint32_t type_name_addr;
@@ -22,7 +22,7 @@ struct TObject {
be_uint32_t parent_addr;
be_uint32_t children_head_addr;
be_uint32_t vtable_addr;
} __attribute__((packed));
} __packed_ws__(TObject, 0x1C);
PSOGCObjectGraph::PSOGCObjectGraph(
const string& memory_data, uint32_t root_address) {