Skip to content

Commit 82d63d7

Browse files
committed
fixed universal windows platform errors
1 parent ff3371e commit 82d63d7

File tree

19 files changed

+17261
-477
lines changed

19 files changed

+17261
-477
lines changed

Assets/InputManager/Addons/XInputDotNet/Plugins/XInputDotNetPure.dll.meta

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/InputManager/Addons/XInputDotNet/Scripts/XInputGamepadState.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
#endregion
2323
using UnityEngine;
24-
#if(UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN) && INPUT_MANAGER_X_INPUT
24+
#if (UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN) && INPUT_MANAGER_X_INPUT
2525
using XInputDotNetPure;
2626
using XButtonState = XInputDotNetPure.ButtonState;
2727
using XPlayerIndex = XInputDotNetPure.PlayerIndex;
@@ -40,7 +40,7 @@ public partial class XInputGamepadState : MonoBehaviour
4040
[SerializeField]
4141
private bool m_ignoreTimescale = true;
4242

43-
#if(UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN) && INPUT_MANAGER_X_INPUT
43+
#if (UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN) && INPUT_MANAGER_X_INPUT
4444
private struct DPAD
4545
{
4646
public float X;

0 commit comments

Comments
 (0)