Skip to content

Commit

Permalink
V3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
quippy-git committed Nov 16, 2023
1 parent 5d5a39f commit 93e6095
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ JavaMod incorporates modified versions of the following libraries:
(AGAiN - FairStars MP3 Recorderkg.XM vs. TIMEAGO.IT)
* FIX: IT Compatibility: Ensure that there is no pan swing, panbrello, panning
envelopes, etc. applied on surround channels.
* FIX: Looping a song needs complete reset on all and everything

## New in Version 3.5
* FIX: PortaToNote: if an instrument is set, that was ignored, as FT2.09 does it.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@ public void sanitize(final int maxValue)
}

// limit loop and sustain loop positions to the maximum
loopStartPoint = Helpers.limitMax(loopStartPoint, endPoint);
loopEndPoint = Helpers.limitMax(loopEndPoint, loopStartPoint);
sustainStartPoint = Helpers.limitMax(sustainStartPoint, endPoint);
sustainEndPoint = Helpers.limitMax(sustainEndPoint, sustainStartPoint);
loopEndPoint = Helpers.limitMax(loopEndPoint, endPoint);
loopStartPoint = Helpers.limitMax(loopStartPoint, loopEndPoint);
sustainEndPoint = Helpers.limitMax(sustainEndPoint, endPoint);
sustainStartPoint = Helpers.limitMax(sustainStartPoint, sustainEndPoint);
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2201,6 +2201,7 @@ protected boolean doRowAndTickEvents()
currentPatternIndex = mod.getArrangement()[currentArrangement];
currentPattern = mod.getPatternContainer().getPattern(currentPatternIndex);
currentRow = 0;
initializeMixer();
if ((doNoLoops&ModConstants.PLAYER_LOOP_FADEOUT)!=0)
doLoopingGlobalFadeout = true;
}
Expand Down

0 comments on commit 93e6095

Please sign in to comment.