Various build fixes
This commit is contained in:
@ -31,6 +31,8 @@ public:
|
||||
int GetIntSettingValue(const char* section, const char* key, int default_value = 0) override;
|
||||
float GetFloatSettingValue(const char* section, const char* key, float default_value = 0.0f) override;
|
||||
std::vector<std::string> GetSettingStringList(const char* section, const char* key) override;
|
||||
SettingsInterface* GetSettingsInterface() override;
|
||||
std::lock_guard<std::recursive_mutex> GetSettingsLock() override;
|
||||
|
||||
std::string GetBIOSDirectory() override;
|
||||
|
||||
@ -38,6 +40,7 @@ public:
|
||||
|
||||
void OnSystemPerformanceCountersUpdated() override;
|
||||
void OnDisplayInvalidated() override;
|
||||
void OnAchievementsRefreshed() override;
|
||||
|
||||
protected:
|
||||
bool AcquireHostDisplay() override;
|
||||
@ -58,4 +61,5 @@ private:
|
||||
void UpdateSettings();
|
||||
|
||||
RegTestSettingsInterface m_settings_interface;
|
||||
std::recursive_mutex m_settings_mutex;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user