From 1692636716586943423a7fbdfe7aa3a34f2d812a Mon Sep 17 00:00:00 2001 From: Patrick Hogan Date: Sat, 5 Aug 2017 20:52:31 -0500 Subject: [PATCH] Fix for Unity 2017 --- Assets/InControl/Source/Unity/UnityInputDeviceProfile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/InControl/Source/Unity/UnityInputDeviceProfile.cs b/Assets/InControl/Source/Unity/UnityInputDeviceProfile.cs index 1a007b32..5f8bcb66 100644 --- a/Assets/InControl/Source/Unity/UnityInputDeviceProfile.cs +++ b/Assets/InControl/Source/Unity/UnityInputDeviceProfile.cs @@ -50,7 +50,7 @@ public UnityInputDeviceProfile() ButtonMappings = new InputControlMapping[0]; MinUnityVersion = new VersionInfo( 3 ); - MaxUnityVersion = new VersionInfo( 9 ); + MaxUnityVersion = new VersionInfo( int.MaxValue ); }