diff options
author | Chris Robinson <[email protected]> | 2017-05-05 07:49:56 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-05-05 07:49:56 -0700 |
commit | e1bc4c0730960761593481d2b048f760a9f008f8 (patch) | |
tree | 68e52b918f68704054ace32be123034b88f53dd7 /utils | |
parent | 074e4496ba1136b5c9590dff21b6c1181b2a5541 (diff) |
Include the Built-In HRTF names in alsoft-config when enabled
Diffstat (limited to 'utils')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index d46bb029..4f16726f 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -540,6 +540,11 @@ QStringList MainWindow::collectHrtfs() } } } + +#ifdef ALSOFT_EMBED_HRTF_DATA + ret.push_back("Built-In 44100hz"); + ret.push_back("Built-In 48000hz"); +#endif } return ret; } |