This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Fix rtaudioIsMicrophoneBlocked() on Mac <10.14.
tags/v2.5.0
Andrew Belt
7 months ago
parent
c43d4b4388
commit
584f939f4d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/rtaudio.mm
+ 1
- 1
src/rtaudio.mm
View File
@@ -11,7 +11,7 @@ bool rtaudioIsMicrophoneBlocked() {
return status == AVAuthorizationStatusRestricted || status == AVAuthorizationStatusDenied;
}
// On earlier versions, assume microphone is not blocked.
return
tru
e;
return
fals
e;
}
Write
Preview
Loading…
Cancel
Save