yaz0.c OK (#71)

This commit is contained in:
Rozelette
2021-03-16 20:49:27 -05:00
committed by GitHub
parent a53626049f
commit 8342329538
16 changed files with 192 additions and 37 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
#include <global.h>
void* Lib_bcopy(void* dest, void* src, size_t n) {
_bcopy(src, dest, n);
bcopy(src, dest, n);
return dest;
}
+1 -1
View File
@@ -454,7 +454,7 @@ void SceneProc_DrawSceneConfig6(GlobalContext* ctxt) {
for (i = 0; i < 9; i++, dlHead += 2) {
u32 lodFrac = 0;
_bcopy(D_801C3C88, dlHead, sizeof(Gfx[2]));
bcopy(D_801C3C88, dlHead, sizeof(Gfx[2]));
switch(i) {
case 0:
+1 -1
View File
@@ -1731,5 +1731,5 @@ void SkelAnime_Free(SkelAnime* skelAnime, GlobalContext* globalCtx) {
}
void SkelAnime_CopyVec3s(SkelAnime* skelAnime, Vec3s* dst, Vec3s* src) {
_bcopy(src, dst, sizeof(Vec3s) * skelAnime->limbCount);
bcopy(src, dst, sizeof(Vec3s) * skelAnime->limbCount);
}