summaryrefslogtreecommitdiff
path: root/src/d/actor/d_a_am2.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-04-19 13:55:59 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2025-04-19 13:55:59 -0400
commit58ab93081715ffdc3df86eed6a0abe04f4939a76 (patch)
treec236d5d2aa9f152fd6d1625ec97e3835dd0c5818 /src/d/actor/d_a_am2.cpp
parentf74a03109fd8268918f6949150deb06da5a82215 (diff)
More inlines
Also update dtk-template
Diffstat (limited to 'src/d/actor/d_a_am2.cpp')
-rw-r--r--src/d/actor/d_a_am2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/actor/d_a_am2.cpp b/src/d/actor/d_a_am2.cpp
index ea9ab280..c61fdcb4 100644
--- a/src/d/actor/d_a_am2.cpp
+++ b/src/d/actor/d_a_am2.cpp
@@ -76,9 +76,9 @@ static void draw_SUB(am2_class* i_this) {
J3DModel* model = i_this->mpMorf->getModel();
model->setBaseScale(i_this->scale);
mDoMtx_stack_c::transS(i_this->current.pos);
- cMtx_YrotM(mDoMtx_stack_c::get(), i_this->shape_angle.y);
- cMtx_XrotM(mDoMtx_stack_c::get(), i_this->shape_angle.x);
- cMtx_ZrotM(mDoMtx_stack_c::get(), i_this->shape_angle.z);
+ mDoMtx_stack_c::YrotM(i_this->shape_angle.y);
+ mDoMtx_stack_c::XrotM(i_this->shape_angle.x);
+ mDoMtx_stack_c::ZrotM(i_this->shape_angle.z);
model->setBaseTRMtx(mDoMtx_stack_c::get());
i_this->mpMorf->calc();