sure, context object

master
zetaPRIME 2022-03-09 19:01:38 -05:00
parent 12ba77fc96
commit d28e1837d4
2 changed files with 8 additions and 2 deletions

8
notes
View File

@ -32,7 +32,13 @@ parameters {
TODO {
immediate frontburner {
???
look into performance/timing/sync of audio engine; it's having buffer issues way more than it feels like it should
recent files list and backend {
settings manager to handle loading+saving
separate files for "settings" and "state"
probably an "update all relevant windows" thing for recents
}
distortion effect

View File

@ -110,7 +110,7 @@ void AudioEngine::initAudio(bool startNow) {
void AudioEngine::deinitAudio() {
if (output) {
QTimer::singleShot(20, [this] { // delay to flush buffers with silence, else we get leftovers on next playback
QTimer::singleShot(20, this, [this] { // delay to flush buffers with silence, else we get leftovers on next playback
if (output && mode == Stopped) {
output->stop();
output.reset();