diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-01-06 02:07:31 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-01-06 02:07:31 -0500 |
commit | 634f516195b4d6220fe31f9388995d0c7f2cedc4 (patch) | |
tree | b8cacf88d795e7abd8e548a4691fb818f19f6d52 | |
parent | 160601dd6bef9c0ded2be9da8baaf5d8bf426f49 (diff) | |
download | abaddon-portaudio-634f516195b4d6220fe31f9388995d0c7f2cedc4.tar.gz abaddon-portaudio-634f516195b4d6220fe31f9388995d0c7f2cedc4.zip |
fix compile probably
-rw-r--r-- | src/settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings.cpp b/src/settings.cpp index df9b71f..e8a6bbf 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -116,7 +116,7 @@ void SettingsManager::DefineSettings() { #ifdef WITH_RNNOISE AddSetting("voice", "vad", "rnnoise"s, &Settings::VAD); #else - AddSetting("voice", "vad", "gate", &Settings::VAD); + AddSetting("voice", "vad", "gate"s, &Settings::VAD); #endif HandleReadToken(); |