diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-12-19 21:29:37 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-12-19 21:29:37 -0500 |
| commit | ec3f7f0198981e4ddbb6aaab68521396c0a6ca51 (patch) | |
| tree | 238297c7d9a0206ec952d47b88986ef6dde0c2b5 /src/JSystem/J3DGraphAnimator/J3DAnimation.cpp | |
| parent | 1f8f630e2f497515a71e1c3a74c6e943c0ed8ef6 (diff) | |
misc minor cleanup (indentation, offset comments, etc)
Diffstat (limited to 'src/JSystem/J3DGraphAnimator/J3DAnimation.cpp')
| -rw-r--r-- | src/JSystem/J3DGraphAnimator/J3DAnimation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/JSystem/J3DGraphAnimator/J3DAnimation.cpp b/src/JSystem/J3DGraphAnimator/J3DAnimation.cpp index 41a75482..544a3e12 100644 --- a/src/JSystem/J3DGraphAnimator/J3DAnimation.cpp +++ b/src/JSystem/J3DGraphAnimator/J3DAnimation.cpp @@ -60,7 +60,7 @@ BOOL J3DFrameCtrl::checkPass(f32 pass_frame) { return false; } } else if (mEnd <= cur_frame) { - while (next_frame >= mEnd) { + while (next_frame >= mEnd) { if (mEnd - mLoop <= 0.0f) { break; } @@ -73,7 +73,7 @@ BOOL J3DFrameCtrl::checkPass(f32 pass_frame) { return false; } } else if (next_frame < mStart) { - while (next_frame < mStart) { + while (next_frame < mStart) { if (mLoop - mStart <= 0.0f) { break; } @@ -86,7 +86,7 @@ BOOL J3DFrameCtrl::checkPass(f32 pass_frame) { return false; } } else if (mEnd <= next_frame) { - while (next_frame >= mEnd) { + while (next_frame >= mEnd) { if (mEnd - mLoop <= 0.0f) { break; } |
