diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-18 11:33:08 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-18 11:33:08 -0400 |
| commit | 9e29fd3c68e471560b8910dcde3028b2a4d487cd (patch) | |
| tree | 28ef085323ebdb56b7ba7a44ac7ff2bfff3e8190 /src/d/actor/d_a_wall.cpp | |
| parent | 202851599fb67079504af37fe0f5b944bfa51e19 (diff) | |
More warning cleanup
Diffstat (limited to 'src/d/actor/d_a_wall.cpp')
| -rw-r--r-- | src/d/actor/d_a_wall.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/d/actor/d_a_wall.cpp b/src/d/actor/d_a_wall.cpp index bcd783f5..49e78c42 100644 --- a/src/d/actor/d_a_wall.cpp +++ b/src/d/actor/d_a_wall.cpp @@ -217,7 +217,7 @@ void daWall_c::mode_break() { switch (mType) { case 0: case 1: - case 2: + case 2: { if ((mBreakCounter > 10) && cLib_chaseF(&mDst, 0.0f, 2.2222223f)) { fopAcM_delete(this); } @@ -227,6 +227,7 @@ void daWall_c::mode_break() { pEmitter->setGlobalAlpha(mDst); } break; + } default: fopAcM_delete(this); break; |
