mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-21 05:09:46 -06:00
port some small fry to the new config system.
This commit is contained in:
@ -85,18 +85,6 @@ bool DirectLAN;
|
||||
|
||||
bool SavestateRelocSRAM;
|
||||
|
||||
int AudioInterp;
|
||||
int AudioBitDepth;
|
||||
int AudioVolume;
|
||||
bool DSiVolumeSync;
|
||||
int MicInputType;
|
||||
std::string MicDevice;
|
||||
std::string MicWavPath;
|
||||
|
||||
std::string LastROMFolder;
|
||||
|
||||
std::string RecentROMList[10];
|
||||
|
||||
std::string SaveFilePath;
|
||||
std::string SavestatePath;
|
||||
std::string CheatFilePath;
|
||||
@ -411,6 +399,12 @@ size_t Array::Size()
|
||||
return Data.size();
|
||||
}
|
||||
|
||||
void Array::Clear()
|
||||
{
|
||||
toml::array newarray;
|
||||
Data = newarray;
|
||||
}
|
||||
|
||||
Array Array::GetArray(const int id)
|
||||
{
|
||||
while (Data.size() < id+1)
|
||||
|
Reference in New Issue
Block a user