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

@ -574,10 +574,9 @@ void DivExportZSM::run() {
e->got.rate=zsmrate&0xffff;
// determine loop point
int loopOrder=0;
int loopRow=0;
int loopEnd=0;
e->walkSong(loopOrder,loopRow,loopEnd);
e->calcSongTimestamps();
int loopOrder=e->curSubSong->ts.loopStart.order;
int loopRow=e->curSubSong->ts.loopStart.row;
logAppendf("loop point: %d %d",loopOrder,loopRow);
zsm.init(zsmrate);