summaryrefslogtreecommitdiff
path: root/src/nw4r/lyt/lyt_pane.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/nw4r/lyt/lyt_pane.cpp')
-rw-r--r--src/nw4r/lyt/lyt_pane.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nw4r/lyt/lyt_pane.cpp b/src/nw4r/lyt/lyt_pane.cpp
index 91888914..ef297901 100644
--- a/src/nw4r/lyt/lyt_pane.cpp
+++ b/src/nw4r/lyt/lyt_pane.cpp
@@ -277,12 +277,12 @@ void Pane::CalculateMtx(const DrawInfo &drawInfo) {
this->mMtx._13 = this->mTranslate.y;
this->mMtx._23 = this->mTranslate.z;
if (this->mpParent) {
- PSMTXConcat(this->mpParent->mGlbMtx, this->mMtx, this->mGlbMtx);
+ MTXConcat(this->mpParent->mGlbMtx, this->mMtx, this->mGlbMtx);
} else {
if (drawInfo.IsMultipleViewMtxOnDraw()) {
this->mGlbMtx = this->mMtx;
} else {
- PSMTXConcat(drawInfo.GetViewMtx(), this->mMtx, this->mGlbMtx);
+ MTXConcat(drawInfo.GetViewMtx(), this->mMtx, this->mGlbMtx);
}
}
@@ -446,7 +446,7 @@ void Pane::LoadMtx(const DrawInfo &drawInfo) {
math::MTX34 mtx;
math::MTX34 *mtxPtr;
if (drawInfo.IsMultipleViewMtxOnDraw()) {
- PSMTXConcat(drawInfo.GetViewMtx(), this->mGlbMtx, mtx);
+ MTXConcat(drawInfo.GetViewMtx(), this->mGlbMtx, mtx);
mtxPtr = &mtx;
} else {
mtxPtr = &this->mGlbMtx;