i removed the gamelist already so no need to set it in the settings

This commit is contained in:
CocoSimone
2023-02-19 16:41:13 +01:00
parent e665f2d6e9
commit 6b916831b7
2 changed files with 1 additions and 17 deletions

View File

@@ -12,11 +12,10 @@ struct Settings {
float GetVolumeR() const { return volumeR; };
bool GetLockChannels() const { return lockChannels; }
std::string GetCpuType() const { return cpuType; }
std::string GetGamesDir() const { return gamesDir; }
void RenderWidget(bool& show);
private:
std::string cpuType = "interpreter", gamesDir = "";
std::string cpuType = "interpreter";
float volumeL = 0.0, volumeR = 0.0;
bool lockChannels = true;
json settings;