main.cpp : Call midiDeviceAllNotesOff() when run button is unchecked.

This commit is contained in:
kevin 2024-12-23 16:39:19 -05:00
parent d9ec512201
commit de24fab8d3

View File

@ -301,6 +301,12 @@ rc_t _on_pgm_run( app_t* app, bool run_check_fl )
app->run_fl = run_check_fl; app->run_fl = run_check_fl;
if( !run_check_fl )
{
midiDeviceAllNotesOff( app->ioH );
}
return rc; return rc;
} }