Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
danferns committed Sep 22, 2024
1 parent 46d7a26 commit 47d458a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/track/keyutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class KeyUtils {
static inline double normalizePitch(double pitch) {
double normPitch = fmod(pitch, 12.0);
if (normPitch < 0) {
normPitch += 12.0;
normPitch += 12.0;
}
return normPitch;
}
Expand Down

0 comments on commit 47d458a

Please # to comment.