diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-02-20 13:00:19 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-02-20 13:47:01 +0100 |
commit | 51c9ffaec0bea17fd9fc50e536b78963ea104356 (patch) | |
tree | bccf6c1a639146fa5448506e09603a522e1f76d4 /drivers/SCsub | |
parent | f41439c84b206067adeea9c97eaf87fb264ee682 (diff) |
Drop RtAudio driver on Windows
We've been defaulting to WASAPI since 3.0 and it's superior to RtAudio
in all aspects.
Obsoletes and closes #25503.
Also enable WINMIDI on MinGW, this had been missed initially.
Fix os_windows.cpp and crash_handler_windows.cpp which had weird
dependencies on RtAudio.h's includes (ugh).
Diffstat (limited to 'drivers/SCsub')
-rw-r--r-- | drivers/SCsub | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/SCsub b/drivers/SCsub index 320d4dc4bb..583973c025 100644 --- a/drivers/SCsub +++ b/drivers/SCsub @@ -13,7 +13,6 @@ SConscript('alsa/SCsub') SConscript('coreaudio/SCsub') SConscript('pulseaudio/SCsub') if (env["platform"] == "windows"): - SConscript("rtaudio/SCsub") SConscript("wasapi/SCsub") if env['xaudio2']: SConscript("xaudio2/SCsub") |