fix: remove logging in SetCursorDetour to avoid big log files

This commit is contained in:
goat 2020-01-23 02:45:37 +09:00
parent f707bbaa06
commit 1453c2d553

View file

@ -126,8 +126,6 @@ namespace Dalamud.Interface
private bool lastWantCapture = false;
private IntPtr SetCursorDetour(IntPtr hCursor) {
Log.Debug($"hCursor: {hCursor.ToInt64():X} WantCapture: {this.lastWantCapture}");
if (this.lastWantCapture == true && (!scene?.IsImGuiCursor(hCursor) ?? false))
return IntPtr.Zero;