From 6737b3ec44da60f62a6b2db7e4a5b1066d6c363f Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 24 Jan 2020 14:49:53 +1000 Subject: [PATCH] Qt: Drop Settings accessor from HostInterface This should only be accessed on the emulation thread. --- src/duckstation-qt/qthostinterface.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/duckstation-qt/qthostinterface.h b/src/duckstation-qt/qthostinterface.h index 9e7aa34e8..3e20c2f4d 100644 --- a/src/duckstation-qt/qthostinterface.h +++ b/src/duckstation-qt/qthostinterface.h @@ -38,10 +38,6 @@ public: void putSettingValue(const QString& name, const QVariant& value); void removeSettingValue(const QString& name); - const Settings& GetCoreSettings() const { return m_settings; } - Settings& GetCoreSettings() { return m_settings; } - // void UpdateCoreSettingsGPU(); - const GameList* getGameList() const { return m_game_list.get(); } GameList* getGameList() { return m_game_list.get(); } void refreshGameList(bool invalidate_cache = false, bool invalidate_database = false);