mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-23 05:38:46 -05:00
UI: Inline macOS 13 check
This commit is contained in:
@@ -1023,7 +1023,11 @@ void OBSBasic::CreateFirstRunSources()
|
||||
bool hasInputAudio = HasAudioDevices(App()->InputAudioSource());
|
||||
|
||||
#ifdef __APPLE__
|
||||
hasDesktopAudio = hasDesktopAudio && shouldCreateDefaultAudioSource();
|
||||
/* On macOS 13 and above, the SCK based audio capture provides a
|
||||
* better alternative to the device-based audio capture. */
|
||||
if (__builtin_available(macOS 13.0, *)) {
|
||||
hasDesktopAudio = false;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (hasDesktopAudio)
|
||||
|
||||
Reference in New Issue
Block a user