summaryrefslogtreecommitdiff
path: root/src/d/actor/d_a_bomb2.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-09-18 20:17:27 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2025-09-18 20:17:27 -0400
commit048d242eef520cc257914cbc56c009ea8e8dc130 (patch)
tree073a8dd8a9af0cdb2edb39eca8735ae2dd73db16 /src/d/actor/d_a_bomb2.cpp
parentae94c57e7398b0e1c65970cae062caaa58377880 (diff)
bpw partial cleanup, fix inline usage across several actors
Diffstat (limited to 'src/d/actor/d_a_bomb2.cpp')
-rw-r--r--src/d/actor/d_a_bomb2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/d/actor/d_a_bomb2.cpp b/src/d/actor/d_a_bomb2.cpp
index 602ba2b8..9917fbd3 100644
--- a/src/d/actor/d_a_bomb2.cpp
+++ b/src/d/actor/d_a_bomb2.cpp
@@ -617,8 +617,8 @@ namespace daBomb2 {
mBombTimer = attr().field_0xA;
f32 frame = 0x87 - attr().field_0xA;
- mBck0.getFrameCtrl()->setFrame(frame);
- mBrk0.getFrameCtrl()->setFrame(frame);
+ mBck0.setFrame(frame);
+ mBrk0.setFrame(frame);
}
}
@@ -1263,8 +1263,8 @@ namespace daBomb2 {
void Act_c::draw_nut() {
J3DModelData* mdlData = (J3DModelData*)mpModel->getModelData();
- mBck0.entry(mdlData, mBck0.getFrame());
- mBrk0.entry(mdlData, mBrk0.getFrame());
+ mBck0.entry(mdlData);
+ mBrk0.entry(mdlData);
dComIfGd_setListP1();
mDoExt_modelUpdateDL(mpModel);
dComIfGd_setList();