This commit is contained in:
LagoLunatic
2023-12-31 14:30:16 -05:00
parent d5306c8346
commit 96901725b0
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -861,7 +861,7 @@ config.libs = [
JSystemLib(
"J3DGraphBase",
[
Object(NonMatching, "JSystem/J3DGraphBase/J3DGD.cpp"),
Object(Matching, "JSystem/J3DGraphBase/J3DGD.cpp"),
Object(Matching, "JSystem/J3DGraphBase/J3DSys.cpp"),
Object(Matching, "JSystem/J3DGraphBase/J3DVertex.cpp"),
Object(NonMatching, "JSystem/J3DGraphBase/J3DTransform.cpp"),
+3 -3
View File
@@ -134,9 +134,9 @@ void J3DGDSetVtxAttrFmtv(GXVtxFmt fmt, GXVtxAttrFmtList* vtxAttr, bool forceNBT)
nrmCompCnt = GX_NRM_NBT;
nbt3 = true;
} else {
nrmCompCnt = GX_NRM_NBT;
if (!forceNBT)
nrmCompCnt = vtxAttr->mCompCnt;
// possible fakematch? need to cast vtxAttr->mCompCnt to int to put value in r0 temporarily
// nrmCompCnt = forceNBT ? GX_NRM_NBT : vtxAttr->mCompCnt;
nrmCompCnt = (GXCompCnt)(forceNBT ? GX_NRM_NBT : (int)(vtxAttr->mCompCnt));
nbt3 = false;
}
break;