faudio: minor change

This translated xaudio2 driver may not be feasible to get working, but
I'll try at some point.
This commit is contained in:
Rafael Kitover 2019-01-02 07:16:08 -08:00
parent 964f086bea
commit ff2d31bf5e
1 changed files with 2 additions and 3 deletions

View File

@ -26,8 +26,6 @@ int GetFADevices(FAudio* fa, wxArrayString* names, wxArrayString* ids,
HRESULT hr;
UINT32 dev_count = 0;
wxLogDebug("IN FAUDIO INIT");
hr = FAudio_GetDeviceCount(fa, &dev_count);
if (hr != S_OK) {
@ -62,6 +60,7 @@ bool GetFADevices(wxArrayString& names, wxArrayString& ids)
#ifdef _DEBUG
flags = FAUDIO_DEBUG_ENGINE;
#endif
hr = FAudioCreate(&fa, flags, FAUDIO_DEFAULT_PROCESSOR); //Apparently this needs 3 parameters, the processor.
if (hr != S_OK) {
@ -347,7 +346,7 @@ bool FAudio_Output::init(long sampleRate)
//#ifdef _DEBUG
// flags = FAUDIO_DEBUG_ENGINE;
//#endif
hr = FAudioCreate(&faud, flags, FAUDIO_DEFAULT_CHANNELS);
hr = FAudioCreate(&faud, flags, FAUDIO_DEFAULT_PROCESSOR);
if (hr != S_OK) {
wxLogError(_("The FAudio interface failed to initialize!"));