From 9ad526c0233134a928cb5889dccb94458fc6dfd0 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 26 Jun 2018 17:03:58 -0500 Subject: Update source to compile on VS Studio for mac --- SuperPolarity/InputController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'SuperPolarity/InputController.cs') diff --git a/SuperPolarity/InputController.cs b/SuperPolarity/InputController.cs index c92bb9c..2047ef0 100644 --- a/SuperPolarity/InputController.cs +++ b/SuperPolarity/InputController.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -55,7 +55,7 @@ namespace SuperPolarity { // OK THIS IS ALL KINDS OF WRONG. THIS IS A PLACEHOLDER BECAUSE DEMO! var keyPressed = false; - if ((InputKeyboardState.IsKeyDown(Keys.Enter) || InputGamePadState.IsButtonDown(Buttons.Start))) { + if ((InputKeyboardState.IsKeyDown(Keys.Enter) || InputGamePadState.IsButtonDown(Buttons.RightStick))) { keyPressed = true; if(!BlockedButtons.Contains("pause") && !BlockedKeys.Contains("pause")) { -- cgit