Changes

Jump to navigation Jump to search
19 bytes added ,  06:35, 2 October 2022
→‎Structs: added next pointer to Filesystem
Line 5: Line 5:  
typedef struct {
 
typedef struct {
 
u32 name; // either a pointer to the name or the name itself if the name is 3 chars
 
u32 name; // either a pointer to the name or the name itself if the name is 3 chars
 +
Filesystem *next;
 
// ...
 
// ...
} FileSystem;
+
} Filesystem;
    
typedef struct {
 
typedef struct {
 
u32 unknown[2];
 
u32 unknown[2];
FileSystem *fs;
+
Filesystem *fs;
 
u32 flags;
 
u32 flags;
 
u32 unknown2;
 
u32 unknown2;
322

edits

Navigation menu