GUI: fix audio export progress bar

issue #2454
This commit is contained in:
tildearrow 2025-10-30 14:59:48 -05:00
parent 0c8cddf356
commit 0ae9151b47
2 changed files with 16 additions and 32 deletions

View file

@ -1823,12 +1823,8 @@ class FurnaceGUI {
char emptyLabel[32];
char emptyLabel2[32];
int songLength; // length of all the song in rows
int songLoopedSectionLength; // length of looped part of the song
int songFadeoutSectionLength; // length of fading part of the song
bool songHasSongEndCommand; // song has "Song end" command (FFxx)
int lengthOfOneFile; // length of one rendering pass. song length times num of loops + fadeout
int totalLength; // total length of render (lengthOfOneFile times num of files for per-channel export)
double songLength; // length of the song in seconds
double totalLength; // total length of render (songLength times num of files for per-channel export)
float curProgress;
int totalFiles;