DivSongTimestamps, part 8

now remove walkSong()
This commit is contained in:
tildearrow 2025-10-29 19:39:53 -05:00
parent a49306b4bd
commit cb220d41ec
10 changed files with 25 additions and 45 deletions

View file

@ -1272,10 +1272,9 @@ SafeWriter* DivEngine::saveVGM(bool* sysToExport, bool loop, int version, bool p
double origRate=got.rate;
got.rate=correctedRate;
// determine loop point
int loopOrder=0;
int loopRow=0;
int loopEnd=0;
walkSong(loopOrder,loopRow,loopEnd);
calcSongTimestamps();
int loopOrder=curSubSong->ts.loopStart.order;
int loopRow=curSubSong->ts.loopStart.row;
logI("loop point: %d %d",loopOrder,loopRow);
warnings="";