diff options
| author | robojumper <robojumper@gmail.com> | 2026-05-07 19:53:30 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2026-05-07 19:53:30 +0200 |
| commit | d8744e1f34e9955d55a5605f939bdf0bf9d8a729 (patch) | |
| tree | 944f80d4d212332abeb1f7607396fc7c7a38a70d /src/egg/gfx/eggScreen.cpp | |
| parent | ddb116187922a3f73ae3c97a136f499b7d724a2c (diff) | |
MTX/VEC cleanup
Diffstat (limited to 'src/egg/gfx/eggScreen.cpp')
| -rw-r--r-- | src/egg/gfx/eggScreen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egg/gfx/eggScreen.cpp b/src/egg/gfx/eggScreen.cpp index 9a9d58cb..e65b3436 100644 --- a/src/egg/gfx/eggScreen.cpp +++ b/src/egg/gfx/eggScreen.cpp @@ -264,7 +264,7 @@ bool Screen::IsChangeEfb() const { } void Screen::CalcMatrixForDrawQuad(math::MTX34 *mtx, f32 x, f32 y, f32 sx, f32 sy) const { - PSMTXScale(*mtx, sx, sy, 1.0f); + MTXScale(*mtx, sx, sy, 1.0f); mtx->m[0][3] = x; mtx->m[1][3] = mCanvasMode == CANVASMODE_0 ? y - sy : y; |
