Skip to content

Commit

Permalink
Merged revision(s) 21783 from trunk/OpenMPT:
Browse files Browse the repository at this point in the history
[Fix] Stream export: Aborting during normalization was not possible.
........


git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.31@21784 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
sagamusix committed Oct 7, 2024
1 parent 4f14ffc commit c63a2cd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mptrack/Mod2wave.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1357,6 +1357,11 @@ void CDoWaveConvert::Run()
lastPercent = percent;
}
ProcessMessages();
if(m_abort)
{
ok = IDCANCEL;
break;
}
}

framesProcessed += framesChunk;
Expand Down

0 comments on commit c63a2cd

Please sign in to comment.