Add microphone combobox using SDL (#1709)

This commit is contained in:
falsidge
2023-06-27 12:31:41 -07:00
committed by GitHub
parent 4b32fb802c
commit 52d6265b58
5 changed files with 36 additions and 2 deletions

View File

@ -120,6 +120,7 @@ int AudioBitDepth;
int AudioVolume;
bool DSiVolumeSync;
int MicInputType;
std::string MicDevice;
std::string MicWavPath;
std::string LastROMFolder;
@ -300,6 +301,7 @@ ConfigEntry ConfigFile[] =
{"AudioVolume", 0, &AudioVolume, 256, true},
{"DSiVolumeSync", 0, &DSiVolumeSync, 0, true},
{"MicInputType", 0, &MicInputType, 1, false},
{"MicDevice", 2, &MicDevice, (std::string)"", false},
{"MicWavPath", 2, &MicWavPath, (std::string)"", false},
{"LastROMFolder", 2, &LastROMFolder, (std::string)"", true},