aboutsummaryrefslogtreecommitdiff
path: root/devel/godot2/files/patch-drivers_rtaudio_audio__driver__rtaudio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'devel/godot2/files/patch-drivers_rtaudio_audio__driver__rtaudio.cpp')
-rw-r--r--devel/godot2/files/patch-drivers_rtaudio_audio__driver__rtaudio.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/devel/godot2/files/patch-drivers_rtaudio_audio__driver__rtaudio.cpp b/devel/godot2/files/patch-drivers_rtaudio_audio__driver__rtaudio.cpp
deleted file mode 100644
index 93d5b7a4959b..000000000000
--- a/devel/godot2/files/patch-drivers_rtaudio_audio__driver__rtaudio.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
---- drivers/rtaudio/audio_driver_rtaudio.cpp.orig 2019-07-08 12:01:42 UTC
-+++ drivers/rtaudio/audio_driver_rtaudio.cpp
-@@ -38,8 +38,14 @@ const char *AudioDriverRtAudio::get_name() const {
-
- #ifdef OSX_ENABLED
- return "RtAudio-OSX";
--#elif defined(UNIX_ENABLED)
-+#elif defined(UNIX_ENABLED) && (defined(ALSA_ENABLED) || defined(PULSEAUDIO_ENABLED) || defined(OSS_ENABLED))
-+#if defined(OSS_ENABLED)
-+ return "RtAudio-OSS";
-+#elif defined(ALSA_ENABLED)
- return "RtAudio-ALSA";
-+#elif defined(PULSEAUDIO_ENABLED)
-+ return "RtAudio-PulseAudio";
-+#endif
- #elif defined(WINDOWS_ENABLED)
- return "RtAudio-DirectSound";
- #else