mirror of
https://gitlab.com/dk64_decomp/dk64.git
synced 2024-11-23 07:01:58 +00:00
Merge branch 'misc-fixes' into 'main'
Fix syntax issue in heap.c, fix documentation typo See merge request dk64_decomp/dk64!8
This commit is contained in:
commit
b2326ad34e
@ -33,7 +33,7 @@ A Dockerfile is provided that is based on Ubuntu can be used for development and
|
||||
Build the Docker image:
|
||||
|
||||
```sh
|
||||
docker build -t sm64 .
|
||||
docker build -t dk64 .
|
||||
```
|
||||
|
||||
Then the ROM can be built with Docker using `make`
|
||||
|
@ -169,14 +169,20 @@ void *func_global_asm_806111F8(s32 arg0, u32 arg1) {
|
||||
*/
|
||||
|
||||
void free(void *arg0) {
|
||||
if (((HeapHeader*)arg0 != D_global_asm_807F5A64) && ((HeapHeader*)arg0 -= 1)->unkB == 0) {
|
||||
func_global_asm_80611408(arg0);
|
||||
if (((HeapHeader*)arg0 != D_global_asm_807F5A64)) {
|
||||
arg0 = (HeapHeader*)arg0 - 1;
|
||||
if (((HeapHeader*)arg0)->unkB == 0) {
|
||||
func_global_asm_80611408(arg0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void func_global_asm_8061134C(void *arg0) {
|
||||
if (((HeapHeader*)arg0 != D_global_asm_807F5A64) && ((HeapHeader*)arg0 -= 1)->unkB == 0) {
|
||||
func_global_asm_8061138C(arg0);
|
||||
if (((HeapHeader*)arg0 != D_global_asm_807F5A64)) {
|
||||
arg0 = (HeapHeader*)arg0 - 1;
|
||||
if (((HeapHeader*)arg0)->unkB == 0) {
|
||||
func_global_asm_8061138C(arg0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user