1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-16 14:18:46 +02:00

the None input type should always be considered up

This commit is contained in:
Ell 2021-06-21 00:51:21 +02:00
parent ce920b5219
commit 2f16bbdc44

View file

@ -544,7 +544,7 @@ namespace MLEM.Input {
case GenericInput.InputType.Mouse:
return this.IsMouseButtonUp(control);
default:
return false;
return true;
}
}