add a metronome

This commit is contained in:
tildearrow 2022-01-04 00:02:41 -05:00
parent 943e4e374f
commit 530a9bafc7
4 changed files with 66 additions and 0 deletions

View file

@ -2044,6 +2044,15 @@ void DivEngine::setView(DivStatusView which) {
view=which;
}
bool DivEngine::getMetronome() {
return metronome;
}
void DivEngine::setMetronome(bool enable) {
metronome=enable;
metroAmp=0;
}
void DivEngine::setConsoleMode(bool enable) {
consoleMode=enable;
}