Merge pull request #1632 from redstrate/fix-anti-anti-debug-label

Change "Enable AntiDebug" label to "Disable Debugging Protections" to make it clearer
This commit is contained in:
goat 2024-02-07 21:30:22 +01:00 committed by GitHub
commit ecf4e8b0e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -667,7 +667,7 @@ internal class DalamudInterface : IDisposable, IServiceType
}
var antiDebug = Service<AntiDebug>.Get();
if (ImGui.MenuItem("Enable AntiDebug", null, antiDebug.IsEnabled))
if (ImGui.MenuItem("Disable Debugging Protections", null, antiDebug.IsEnabled))
{
var newEnabled = !antiDebug.IsEnabled;
if (newEnabled)