Small fixes and improvements

This commit is contained in:
SimoneN64
2023-03-19 15:24:59 +01:00
parent 357b5839ca
commit 95655b7001
7 changed files with 70 additions and 64 deletions

View File

@@ -8,10 +8,10 @@ struct Settings {
Settings(n64::Core&);
~Settings();
float GetVolumeL() const { return volumeL; };
float GetVolumeR() const { return volumeR; };
bool GetLockChannels() const { return lockChannels; }
std::string GetCpuType() const { return cpuType; }
inline float GetVolumeL() const { return volumeL; };
inline float GetVolumeR() const { return volumeR; };
inline bool GetLockChannels() const { return lockChannels; }
inline std::string GetCpuType() const { return cpuType; }
void RenderWidget(bool& show);
private: