diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-09-18 20:17:27 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-09-18 20:17:27 -0400 |
| commit | 048d242eef520cc257914cbc56c009ea8e8dc130 (patch) | |
| tree | 073a8dd8a9af0cdb2edb39eca8735ae2dd73db16 /src/d/actor/d_a_dr2.cpp | |
| parent | ae94c57e7398b0e1c65970cae062caaa58377880 (diff) | |
bpw partial cleanup, fix inline usage across several actors
Diffstat (limited to 'src/d/actor/d_a_dr2.cpp')
| -rw-r--r-- | src/d/actor/d_a_dr2.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/d/actor/d_a_dr2.cpp b/src/d/actor/d_a_dr2.cpp index 14b14abd..c3136744 100644 --- a/src/d/actor/d_a_dr2.cpp +++ b/src/d/actor/d_a_dr2.cpp @@ -125,7 +125,7 @@ void iwa_draw(dr2_class* i_this) { mDoExt_modelUpdateDL(i_this->unk_418); if (i_this->unk_424 != 0) { J3DModelData* modelData = i_this->unk_41C->getModelData(); - i_this->unk_420->entry(modelData, i_this->unk_420->getFrame()); + i_this->unk_420->entry(modelData); g_env_light.setLightTevColorType(i_this->unk_41C, &i_this->actor.tevStr); mDoExt_modelUpdateDL(i_this->unk_41C); } @@ -160,14 +160,14 @@ void yuka_draw(dr2_class* i_this) { if (!i_this->unk_43C) { g_env_light.setLightTevColorType(i_this->unk_428, &i_this->actor.tevStr); modelData = i_this->unk_428->getModelData(); - i_this->unk_430->entry(modelData, i_this->unk_430->getFrame()); + i_this->unk_430->entry(modelData); mDoExt_modelUpdateDL(i_this->unk_428); } else { g_env_light.setLightTevColorType(i_this->unk_42C, &i_this->actor.tevStr); modelData = i_this->unk_42C->getModelData(); - i_this->unk_434->entry(modelData, i_this->unk_434->getFrame()); + i_this->unk_434->entry(modelData); modelData = i_this->unk_42C->getModelData(); - i_this->unk_438->entry(modelData, i_this->unk_438->getFrame()); + i_this->unk_438->entry(modelData); mDoExt_modelUpdateDL(i_this->unk_42C); } } |
