add some missing faudio initialization code

Add case for faudio in the code for getting audio devices in
guiinit.cpp.
This commit is contained in:
Rafael Kitover 2018-12-26 05:28:53 -08:00
parent 0c2906d026
commit 396227661e
1 changed files with 8 additions and 0 deletions

View File

@ -1535,6 +1535,14 @@ public:
break;
#endif
#ifndef NO_FAUDIO
case AUD_FAUDIO:
if (!GetFADevices(names, dev_ids))
return false;
break;
#endif
#endif
}