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:
jp9000
2014-03-07 17:19:26 -07:00
parent f2ee950746
commit a9f5959b3c
3 changed files with 3 additions and 4 deletions

View File

@@ -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"