diff options
| author | robojumper <robojumper@gmail.com> | 2026-05-07 21:23:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-07 21:23:47 +0200 |
| commit | f7b4c029fd5176e817e3de7209727480c445a3d2 (patch) | |
| tree | 9cddc9fa36ec13e7dac76c54d74257c61fe20b47 /src/egg/gfx/eggScreen.cpp | |
| parent | ddb116187922a3f73ae3c97a136f499b7d724a2c (diff) | |
| parent | f4d163797f3c21e5a705b75043e0a8fbe7dc2460 (diff) | |
Merge pull request #313 from robojumper/vec-mtx-cleanup
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; |
