diff options
| author | 2016-04-27 13:53:23 +0100 | |
|---|---|---|
| committer | 2016-04-30 07:41:02 +0100 | |
| commit | 4e971f44a27c2e4abc25ddf0720d287a688e0a4d (patch) | |
| tree | c88ce045e20e40dd022a56dbd4a5281024591e61 /src/audio_core/sink_details.cpp | |
| parent | AudioCore: List of sink types (diff) | |
| download | yuzu-4e971f44a27c2e4abc25ddf0720d287a688e0a4d.tar.gz yuzu-4e971f44a27c2e4abc25ddf0720d287a688e0a4d.tar.xz yuzu-4e971f44a27c2e4abc25ddf0720d287a688e0a4d.zip | |
Audio: Add sink selection to configuration files
Diffstat (limited to 'src/audio_core/sink_details.cpp')
| -rw-r--r-- | src/audio_core/sink_details.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/audio_core/sink_details.cpp b/src/audio_core/sink_details.cpp index 20412daaf..d2cc74103 100644 --- a/src/audio_core/sink_details.cpp +++ b/src/audio_core/sink_details.cpp | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | namespace AudioCore { | 11 | namespace AudioCore { |
| 12 | 12 | ||
| 13 | // g_sink_details is ordered in terms of desirability, with the best choice at the top. | ||
| 13 | const std::vector<SinkDetails> g_sink_details = { | 14 | const std::vector<SinkDetails> g_sink_details = { |
| 14 | { "null", []() { return std::make_unique<NullSink>(); } }, | 15 | { "null", []() { return std::make_unique<NullSink>(); } }, |
| 15 | }; | 16 | }; |