fix rendering cutting off the first row

portability/boost
zetaPRIME 2019-07-14 15:42:34 -04:00
parent 9d45d78795
commit cc3ac5fdd5
2 changed files with 3 additions and 1 deletions

2
notes
View File

@ -33,6 +33,7 @@ parameters {
TODO {
immediate frontburner {
spacer rows on top/bottom of pattern editor (keep centered)
make ctrl+pgup/dn jump to the next *actual pattern*, looping around if necessary
global pan (PXX) for InstrumentCore? *default* pan
@ -49,6 +50,7 @@ TODO {
bugs to fix {
playback after stopping immediately after a note in the first pattern played sometimes skips that note
things can apparently be hooked up cyclically, which completely breaks the queue
}
misc features needed before proper release {

View File

@ -224,7 +224,7 @@ void AudioEngine::render(std::shared_ptr<Project> p, QString filename) {
}
seqPos = -1;
curRow = 0;
curRow = -1;
curTick = -2;
tempo = project->tempo;
tickAcc = 0;