diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-02-26 15:13:17 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-02-26 15:13:17 -0500 |
| commit | fda4313e251efff9c959cd509523f4676da0262a (patch) | |
| tree | 15fb062a1396be8a26e9723cf83fb226e66eaa62 /src/d/actor/d_a_ikari.cpp | |
| parent | f0aec5ac44f7904ea28a1b7c23597f214ba37c79 (diff) | |
misc cleanup
Diffstat (limited to 'src/d/actor/d_a_ikari.cpp')
| -rw-r--r-- | src/d/actor/d_a_ikari.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/d/actor/d_a_ikari.cpp b/src/d/actor/d_a_ikari.cpp index a408d3f1..4fe5f83c 100644 --- a/src/d/actor/d_a_ikari.cpp +++ b/src/d/actor/d_a_ikari.cpp @@ -126,12 +126,8 @@ int daIkari_c::_create() { fopAcM_SetMtx(this, &mpModel->mBaseTransformMtx[0]); fopAcM_setCullSizeBox(this, - /* minX */ -160.0f * mScaleX, - /* minY */ -2500.0f * mScaleX, - /* minZ */ -600.0f * mScaleX, - /* maxX */ 160.0f * mScaleX, - /* maxY */ 100.0f * mScaleX, - /* maxZ */ 600.0f * mScaleX); + -160.0f * mScaleX, -2500.0f * mScaleX, -600.0f * mScaleX, + 160.0f * mScaleX, 100.0f * mScaleX, 600.0f * mScaleX); fopAcM_setCullSizeFar(this, 10.0f); mTimer = (short)(int)cM_rndF(32768.0f); |
