diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/AlsaDriver.hpp | 2 | ||||
-rw-r--r-- | src/Patchage.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/AlsaDriver.hpp b/src/AlsaDriver.hpp index 45eb3db..299829f 100644 --- a/src/AlsaDriver.hpp +++ b/src/AlsaDriver.hpp @@ -40,7 +40,7 @@ public: explicit AlsaDriver(Patchage* app); ~AlsaDriver(); - void attach(bool launch_daemon = false); + void attach(bool launch_daemon); void detach(); bool is_attached() const { return (_seq != nullptr); } diff --git a/src/Patchage.cpp b/src/Patchage.cpp index d4b4a36..f02e22e 100644 --- a/src/Patchage.cpp +++ b/src/Patchage.cpp @@ -425,7 +425,7 @@ Patchage::attach() #ifdef HAVE_ALSA if (_alsa_driver_autoattach) { - _alsa_driver->attach(); + _alsa_driver->attach(false); } #endif |