From 5d57c3f687da6de0cf0deba6d1fef53dee2f20b2 Mon Sep 17 00:00:00 2001 From: Chivalrik Date: Sun, 18 Apr 2021 15:51:52 +0200 Subject: [PATCH] fix: Spelling mistake and forgotten conditional compiling --- Dalamud/Interface/InterfaceManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/InterfaceManager.cs b/Dalamud/Interface/InterfaceManager.cs index 0b67f9a63..dbf1556c8 100644 --- a/Dalamud/Interface/InterfaceManager.cs +++ b/Dalamud/Interface/InterfaceManager.cs @@ -478,7 +478,7 @@ namespace Dalamud.Interface var gamepadEnabled = (ImGui.GetIO().BackendFlags & ImGuiBackendFlags.HasGamepad) > 0; // NOTE (Chiv) Activate ImGui navigation via L1+L3 press - // (mimicking to how mouse navigation is activated via L1+R3 press in game). + // (mimicking how mouse navigation is activated via L1+R3 press in game). if (gamepadEnabled && this.dalamud.ClientState.GamepadState.Raw(GamepadButtons.L1) > 0 && this.dalamud.ClientState.GamepadState.Pressed(GamepadButtons.L3) > 0)