Fixed how DLs are rendered past the bounds of short values.

This commit is contained in:
MeltyPlayer
2022-10-20 00:54:05 -05:00
parent c035455ff7
commit fda9452421
3 changed files with 7 additions and 4 deletions
+3
View File
@@ -44,6 +44,9 @@ void guMtxL2F(float mf[4][4], Mtx *m) {
void guMtxF2L(float mf[4][4], Mtx *m) {
memcpy(m, mf, sizeof(Mtx));
}
void guMtxL2F(float mf[4][4], Mtx *m) {
memcpy(mf, m, sizeof(Mtx));
}
#endif
void guMtxIdentF(float mf[4][4]) {