mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-05 15:34:41 +00:00
[iQue] Match gzip/zlib decompression (#2416)
* [iQue] Match gzip/zlib decompression Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com> * Update missed renames in disassembly * Fix some formatting --------- Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com>
This commit is contained in:
parent
84e5afabf9
commit
26f91bd3bb
7 changed files with 1039 additions and 6 deletions
|
@ -12,7 +12,11 @@ void ViConfig_UpdateBlack(void);
|
|||
void* Yaz0_FirstDMA(void);
|
||||
void* Yaz0_NextDMA(u8* curSrcPos);
|
||||
void Yaz0_DecompressImpl(u8* src, u8* dst);
|
||||
#if !PLATFORM_IQUE
|
||||
void Yaz0_Decompress(uintptr_t romStart, u8* dst, size_t size);
|
||||
#else
|
||||
void gzip_decompress(uintptr_t romStart, u8* dst, size_t size);
|
||||
#endif
|
||||
void Locale_Init(void);
|
||||
void Locale_ResetRegion(void);
|
||||
#if DEBUG_FEATURES
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue