mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 09:59:41 -06:00
Add microphone combobox using SDL (#1709)
This commit is contained in:
@ -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},
|
||||
|
Reference in New Issue
Block a user