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
+2 -2
View File
@@ -377,10 +377,10 @@ s32 dNpc_PathRun_c::absIdx(u8 startIdx, u8 lastIdx) {
s32 diff_2 = lastIdx - startIdx;
if(diff_1 < 0) {
diff_1 += maxPoint();
diff_1 += maxPoint();
}
if(diff_2 < 0) {
diff_2 += maxPoint();
diff_2 += maxPoint();
}
if(diff_1 > diff_2) {
return diff_2;