Change "Enable AntiDebug" label to make it clearer

You need to enable this to allow debugging, but the label has the
negative which doesn't make sense. Now it's called "Disable Debugging
Protections" which is what it actually does.
This commit is contained in:
Joshua Goins 2024-02-07 13:06:03 -05:00
parent 65265b678e
commit 8b30781b4c

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)