From e6e6f4fbe14e6bd3551301fe5988a857846684f5 Mon Sep 17 00:00:00 2001 From: zhupengfei Date: Thu, 1 Oct 2020 11:58:47 +0800 Subject: [PATCH] Add descriptions for camera and microphone usage on macos Starting from macOS 10.14, users need to grant permissions for applications to use media capture (camera and microphone). The application *must* provide a description in its Info.plist or it will be terminated due to privacy violation upon attempting to initialize camera/microphone. Ideally these two strings should be translated, but since this is not really compatible with Qt's localization system and likely requires separate configuration, I'm currently not that interested in messing with it. --- src/citra_qt/Info.plist | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/citra_qt/Info.plist b/src/citra_qt/Info.plist index 7d46b39d1..87fc9c246 100644 --- a/src/citra_qt/Info.plist +++ b/src/citra_qt/Info.plist @@ -36,5 +36,9 @@ NSApplication NSHighResolutionCapable True + NSCameraUsageDescription + This app requires camera access to emulate the 3DS's cameras. + NSMicrophoneUsageDescription + This app requires microphone access to emulate the 3DS's microphone.