diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2025-06-15 22:17:24 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-15 22:17:24 -0600 |
| commit | 9fe391a2a4617cdb6ce3b2ab743183756f2ca9bd (patch) | |
| tree | ef05cdebfde9874e3a4fd890b391d37232786d4b /src/os | |
| parent | 547d651cc470503867a4e2e060536ca768dbb1ec (diff) | |
Fix More Interpolation (#220)
* Fix SetTextMatrix Interpolation (flashing text)
* Interpolate pause menu item box
* Interp mtxf_translation_x_y_rotate_z_scale_x_y
* Fix billboarding for freecam
* Fix menus battle mode back to grand prix bug
* Fix snow interp
* interp star clouds
Diffstat (limited to 'src/os')
| -rw-r--r-- | src/os/guMtxCatL.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os/guMtxCatL.c b/src/os/guMtxCatL.c index cef956954..1ca1b5a28 100644 --- a/src/os/guMtxCatL.c +++ b/src/os/guMtxCatL.c @@ -31,6 +31,7 @@ */ #include <libultraship.h> +#include "port/interpolation/FrameInterpolation.h" // void guMtxXFMF(Mtx*, float, float, float, float*, float*, float*); void guMtxCatF(float mf[4][4], float nf[4][4], float res[4][4]); @@ -43,6 +44,7 @@ void guMtxCatL(Mtx* m, Mtx* n, Mtx* res) { guMtxCatF(mf, nf, resf); + FrameInterpolation_RecordMatrixMtxFToMtx((MtxF*)resf, res); guMtxF2L(resf, res); } |
