mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 07:39:56 -06:00
port audio settings to new config system
This commit is contained in:
@ -39,6 +39,9 @@ public:
|
||||
EmuThread* getEmuThread() { return emuThread; }
|
||||
melonDS::NDS* getNDS() { return nds; }
|
||||
|
||||
Config::Table& getGlobalConfig() { return globalCfg; }
|
||||
Config::Table& getLocalConfig() { return localCfg; }
|
||||
|
||||
void createWindow();
|
||||
|
||||
// return: empty string = setup OK, non-empty = error message
|
||||
@ -182,6 +185,13 @@ private:
|
||||
melonDS::u32 micBufferLength;
|
||||
melonDS::u32 micBufferReadPos;
|
||||
|
||||
//int audioInterp;
|
||||
int audioVolume;
|
||||
bool audioDSiVolumeSync;
|
||||
int micInputType;
|
||||
std::string micDeviceName;
|
||||
std::string micWavPath;
|
||||
|
||||
friend class EmuThread;
|
||||
friend class MainWindow;
|
||||
};
|
||||
|
Reference in New Issue
Block a user