mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Qt/Settings: Implement ControllerStateNeeded
This commit is contained in:
@ -269,3 +269,13 @@ bool Settings::IsBreakpointsVisible() const
|
||||
{
|
||||
return QSettings().value(QStringLiteral("debugger/showbreakpoints")).toBool();
|
||||
}
|
||||
|
||||
bool Settings::IsControllerStateNeeded() const
|
||||
{
|
||||
return m_controller_state_needed;
|
||||
}
|
||||
|
||||
void Settings::SetControllerStateNeeded(bool needed)
|
||||
{
|
||||
m_controller_state_needed = needed;
|
||||
}
|
||||
|
Reference in New Issue
Block a user