This commit is contained in:
Jared Bruni
2021-08-29 12:54:51 -07:00
parent def585f0c2
commit ac87d53811
3 changed files with 9 additions and 1 deletions

View File

@@ -132,6 +132,13 @@ void Playback::setAlpha(int a) {
mutex.unlock();
}
bool Playback::getProgramMode() {
mutex.lock();
bool m = single_mode;
mutex.unlock();
return m;
}
void Playback::setProcMode(int p) {
mutex.lock();
ac::setProcMode(ac::PROC_MODE_TYPE(p));