diff -r f901c6d962c836afef23e93ea9619b61e175cb25 -r 615b02202bfe934829676112e88d632c0449cb6c axios/ScreenSystem/InputState.cs --- a/axios/ScreenSystem/InputState.cs Tue May 15 21:37:46 2012 -0500 +++ b/axios/ScreenSystem/InputState.cs Tue May 15 22:03:44 2012 -0500 @@ -270,7 +270,7 @@ /// public void Update(GameTime gameTime) { - PlayerIndex p; + //PlayerIndex p; _lastMouseState = _currentMouseState; if (_handleVirtualStick) { @@ -339,14 +339,14 @@ _cursor.Y = _currentMouseState.Y; } - if (this.IsNewKeyPress(Keys.P, PlayerIndex.One, out p)) - Console.WriteLine(_cursor.ToString()); + //if (this.IsNewKeyPress(Keys.P, PlayerIndex.One, out p)) + // Console.WriteLine(_cursor.ToString()); _cursor.X = MathHelper.Clamp(_cursor.X, 0f, _viewport.Width); _cursor.Y = MathHelper.Clamp(_cursor.Y, 0f, _viewport.Height); - if (this.IsNewKeyPress(Keys.P, PlayerIndex.One, out p)) - Console.WriteLine(_cursor.ToString()); + //if (this.IsNewKeyPress(Keys.P, PlayerIndex.One, out p)) + // Console.WriteLine(_cursor.ToString()); if (_cursorIsValid && oldCursor != _cursor) { @@ -377,8 +377,8 @@ } #endif - if (this.IsNewKeyPress(Keys.P, PlayerIndex.One, out p)) - Console.WriteLine(_viewport.ToString()); + //if (this.IsNewKeyPress(Keys.P, PlayerIndex.One, out p)) + // Console.WriteLine(_viewport.ToString()); }