mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-20 01:15:08 -05:00
Qt/Debugger: Implement "JIT" widget
This commit is contained in:
@@ -319,6 +319,20 @@ bool Settings::IsMemoryVisible() const
|
||||
return QSettings().value(QStringLiteral("debugger/showmemory")).toBool();
|
||||
}
|
||||
|
||||
void Settings::SetJITVisible(bool enabled)
|
||||
{
|
||||
if (IsJITVisible() == enabled)
|
||||
return;
|
||||
QSettings().setValue(QStringLiteral("debugger/showjit"), enabled);
|
||||
|
||||
emit JITVisibilityChanged(enabled);
|
||||
}
|
||||
|
||||
bool Settings::IsJITVisible() const
|
||||
{
|
||||
return QSettings().value(QStringLiteral("debugger/showjit")).toBool();
|
||||
}
|
||||
|
||||
void Settings::SetDebugFont(QFont font)
|
||||
{
|
||||
if (GetDebugFont() != font)
|
||||
|
||||
Reference in New Issue
Block a user