misc minor cleanup (indentation, offset comments, etc)

This commit is contained in:
LagoLunatic
2023-12-19 21:29:37 -05:00
parent 1f8f630e2f
commit ec3f7f0198
53 changed files with 285 additions and 291 deletions
@@ -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;
}