mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #8456 from jordan-woyak/input-gate-race-fix
InputCommon: Make the "input gate" not racy.
This commit is contained in:
@ -57,8 +57,6 @@ public:
|
||||
void SetLogVisible(bool visible);
|
||||
bool IsLogConfigVisible() const;
|
||||
void SetLogConfigVisible(bool visible);
|
||||
bool IsControllerStateNeeded() const;
|
||||
void SetControllerStateNeeded(bool needed);
|
||||
void SetToolBarVisible(bool visible);
|
||||
bool IsToolBarVisible() const;
|
||||
void SetWidgetsLocked(bool visible);
|
||||
@ -181,7 +179,6 @@ signals:
|
||||
|
||||
private:
|
||||
bool m_batch = false;
|
||||
bool m_controller_state_needed = false;
|
||||
std::shared_ptr<NetPlay::NetPlayClient> m_client;
|
||||
std::shared_ptr<NetPlay::NetPlayServer> m_server;
|
||||
Settings();
|
||||
|
Reference in New Issue
Block a user