Fix an error and a few warnings
The strings didn't have ending double quotes. No clue why this didn't fail in GCC and VC. Well, VC is horrible but I expected better out of GCC.
This commit is contained in:
@@ -182,8 +182,8 @@ void OBSApp::OBSInit()
|
||||
}
|
||||
|
||||
#ifdef __APPLE__
|
||||
#define INPUT_AUDIO_SOURCE "coreaudio_input_capture
|
||||
#define OUTPUT_AUDIO_SOURCE "coreaudio_output_capture
|
||||
#define INPUT_AUDIO_SOURCE "coreaudio_input_capture"
|
||||
#define OUTPUT_AUDIO_SOURCE "coreaudio_output_capture"
|
||||
#elif _WIN32
|
||||
#define INPUT_AUDIO_SOURCE "wasapi_input_capture"
|
||||
#define OUTPUT_AUDIO_SOURCE "wasapi_output_capture"
|
||||
|
Reference in New Issue
Block a user