TwoHeadArena Cleanup (#633)

* TwoHeadArena cleanup

* remove params

* remove params

* prettying up the struct a little

* remove unecessary cast
This commit is contained in:
AdamKiddle
2021-01-15 22:18:15 +00:00
committed by GitHub
parent 447c6514b9
commit 9be264da9d
2 changed files with 14 additions and 16 deletions
+3 -3
View File
@@ -70,9 +70,9 @@ typedef struct {
typedef struct {
/* 0x0000 */ u32 size;
/* 0x0004 */ u8* bufp;
/* 0x0008 */ u8* head;
/* 0x000C */ u8* tail;
/* 0x0004 */ void* bufp;
/* 0x0008 */ void* head;
/* 0x000C */ void* tail;
} TwoHeadArena; // size = 0x10
typedef struct {