diff options
| author | Jasper St. Pierre <jstpierre@mecheye.net> | 2024-07-02 16:31:05 -0700 |
|---|---|---|
| committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2024-07-02 16:31:05 -0700 |
| commit | 84c76203fc0e23851b8bbbc1c090bf9cfd67cc96 (patch) | |
| tree | a314805ab048f8bf979043b8593b5844503712f9 /include/JSystem/JKernel | |
| parent | f61e242c1af8d35aa265676209297cd5d6461517 (diff) | |
d_s_menu work
Diffstat (limited to 'include/JSystem/JKernel')
| -rw-r--r-- | include/JSystem/JKernel/JKRAram.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/JSystem/JKernel/JKRAram.h b/include/JSystem/JKernel/JKRAram.h index 754e9a45..34a1b24a 100644 --- a/include/JSystem/JKernel/JKRAram.h +++ b/include/JSystem/JKernel/JKRAram.h @@ -86,6 +86,10 @@ inline JKRAramBlock *JKRMainRamToAram(u8 *buf, u32 bufSize, u32 alignedSize, JKR return JKRAram::mainRamToAram(buf, bufSize, alignedSize, expandSwitch, fileSize, heap, id); } +inline JKRAramBlock* JKRMainRamToAram(u8* buf, JKRAramBlock* block, u32 size, JKRExpandSwitch expandSwitch, u32 fileSize, JKRHeap* heap, int id) { + return JKRAram::mainRamToAram(buf, block, size, expandSwitch, fileSize, heap, id); +} + // void JKRDecompressFromAramToMainRam(u32, void*, u32, u32, u32, u32*); #endif /* JKRARAM_H */ |
