diff options
Diffstat (limited to 'Ryujinx/Ui/MainWindow.cs')
-rw-r--r-- | Ryujinx/Ui/MainWindow.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx/Ui/MainWindow.cs b/Ryujinx/Ui/MainWindow.cs index cc3c1239..92689307 100644 --- a/Ryujinx/Ui/MainWindow.cs +++ b/Ryujinx/Ui/MainWindow.cs @@ -638,18 +638,18 @@ namespace Ryujinx.Ui [Conditional("RELEASE")] public void PerformanceCheck() { - if (ConfigurationState.Instance.Logger.EnableDebug.Value) + if (ConfigurationState.Instance.Logger.EnableTrace.Value) { MessageDialog debugWarningDialog = new MessageDialog(this, DialogFlags.Modal, MessageType.Warning, ButtonsType.YesNo, null) { Title = "Ryujinx - Warning", - Text = "You have debug logging enabled, which is designed to be used by developers only.", - SecondaryText = "For optimal performance, it's recommended to disable debug logging. Would you like to disable debug logging now?" + Text = "You have trace logging enabled, which is designed to be used by developers only.", + SecondaryText = "For optimal performance, it's recommended to disable trace logging. Would you like to disable trace logging now?" }; if (debugWarningDialog.Run() == (int)ResponseType.Yes) { - ConfigurationState.Instance.Logger.EnableDebug.Value = false; + ConfigurationState.Instance.Logger.EnableTrace.Value = false; SaveConfig(); } |