Fixed sys_lib conflict

This commit is contained in:
KiritoDv 2024-04-08 18:06:01 -06:00 committed by Sonic Dreamcaster
parent 3892bcefa2
commit 9a9f677fbb

View File

@ -101,7 +101,7 @@ void Lib_InitOrtho(Gfx** dList) {
Matrix_Copy(gGfxMatrix, &gIdentityMatrix); Matrix_Copy(gGfxMatrix, &gIdentityMatrix);
} }
void Lib_DmaRead(void* src, void* dst, ptrdiff_t size) { void Lib_DmaRead(void* src, void* dst, s32 size) {
osInvalICache(dst, size); osInvalICache(dst, size);
osInvalDCache(dst, size); osInvalDCache(dst, size);
while (size > 0x100) { while (size > 0x100) {