diff options
| author | 2016-09-18 09:38:01 +0900 | |
|---|---|---|
| committer | 2016-09-18 09:38:01 +0900 | |
| commit | dc8479928c5aee4c6ad6fe4f59006fb604cee701 (patch) | |
| tree | 569a7f13128450bbab973236615587ff00bced5f /src/audio_core/sink_details.cpp | |
| parent | Travis: Import Dolphin’s clang-format hook. (diff) | |
| download | yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar.gz yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar.xz yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.zip | |
Sources: Run clang-format on everything.
Diffstat (limited to 'src/audio_core/sink_details.cpp')
| -rw-r--r-- | src/audio_core/sink_details.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/sink_details.cpp b/src/audio_core/sink_details.cpp index ba5e83d17..ff529f4cf 100644 --- a/src/audio_core/sink_details.cpp +++ b/src/audio_core/sink_details.cpp | |||
| @@ -17,9 +17,9 @@ namespace AudioCore { | |||
| 17 | // g_sink_details is ordered in terms of desirability, with the best choice at the top. | 17 | // g_sink_details is ordered in terms of desirability, with the best choice at the top. |
| 18 | const std::vector<SinkDetails> g_sink_details = { | 18 | const std::vector<SinkDetails> g_sink_details = { |
| 19 | #ifdef HAVE_SDL2 | 19 | #ifdef HAVE_SDL2 |
| 20 | { "sdl2", []() { return std::make_unique<SDL2Sink>(); } }, | 20 | {"sdl2", []() { return std::make_unique<SDL2Sink>(); }}, |
| 21 | #endif | 21 | #endif |
| 22 | { "null", []() { return std::make_unique<NullSink>(); } }, | 22 | {"null", []() { return std::make_unique<NullSink>(); }}, |
| 23 | }; | 23 | }; |
| 24 | 24 | ||
| 25 | } // namespace AudioCore | 25 | } // namespace AudioCore |