diff options
| author | mzxrules <mzxrules@gmail.com> | 2023-01-13 22:29:50 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-14 00:29:50 -0300 |
| commit | e2b61f88e46efc994db334ac5f03e1174de67058 (patch) | |
| tree | 50092ee521991f2f9b2ab42dfd8ac7a9253691cd /src/boot_O2_g3 | |
| parent | e4e0aed7cb4f1f99ba1b8dfd973a20662037054c (diff) | |
sys_cmpdata OK (#1065)
* sys_cmpdata decomp
* implement suggestions
* sys_cmpdata OK
* format
* implement suggestion
* make bss data public
* format bleh
Diffstat (limited to 'src/boot_O2_g3')
| -rw-r--r-- | src/boot_O2_g3/yaz0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot_O2_g3/yaz0.c b/src/boot_O2_g3/yaz0.c index 63260e885..aa7ecdfe1 100644 --- a/src/boot_O2_g3/yaz0.c +++ b/src/boot_O2_g3/yaz0.c @@ -6,7 +6,7 @@ u8* sYaz0CurDataEnd; uintptr_t sYaz0CurRomStart; u32 sYaz0CurSize; u8* sYaz0MaxPtr; -u8* D_8009BE20; +void* gYaz0DecompressDstEnd; void* Yaz0_FirstDMA() { u32 pad0; @@ -118,7 +118,7 @@ s32 Yaz0_DecompressImpl(u8* src, u8* dst) { bitIdx--; } while (dst != dstEnd); - D_8009BE20 = dstEnd; + gYaz0DecompressDstEnd = dstEnd; return 0; } |
