From 2f16bbdc449cf797a467c002cfa3f33a1b2d28b5 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 21 Jun 2021 00:51:21 +0200 Subject: [PATCH] the None input type should always be considered up --- MLEM/Input/InputHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLEM/Input/InputHandler.cs b/MLEM/Input/InputHandler.cs index a19c63b..a00511c 100644 --- a/MLEM/Input/InputHandler.cs +++ b/MLEM/Input/InputHandler.cs @@ -544,7 +544,7 @@ namespace MLEM.Input { case GenericInput.InputType.Mouse: return this.IsMouseButtonUp(control); default: - return false; + return true; } }