Don't warn when debug feature is enabled in debug mode (#1707)

metal
Xpl0itR 2020-11-15 19:56:44 +00:00 committed by GitHub
parent aa129fdbdf
commit 58bc6897a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -329,6 +329,7 @@ namespace Ryujinx.Ui
}
else
{
#if !DEBUG
if (ConfigurationState.Instance.Logger.EnableDebug.Value)
{
MessageDialog debugWarningDialog = new MessageDialog(this, DialogFlags.Modal, MessageType.Warning, ButtonsType.YesNo, null)
@ -364,7 +365,7 @@ namespace Ryujinx.Ui
shadersDumpWarningDialog.Dispose();
}
#endif
Logger.RestartTime();
HLE.Switch device = InitializeSwitchInstance();