Display start button in ToString()

This commit is contained in:
Stefanos A 2013-12-23 01:49:49 +01:00 committed by thefiddler
parent 0c9a67da41
commit 1adc3f7733

View file

@ -118,6 +118,7 @@ namespace OpenTK.Input
LeftShoulder == ButtonState.Pressed ? "L" : String.Empty,
RightShoulder == ButtonState.Pressed ? "R" : String.Empty,
Back == ButtonState.Pressed ? " Back" : String.Empty,
Start == ButtonState.Pressed ? " Start" : String.Empty,
BigButton == ButtonState.Pressed ? " Big" : String.Empty,
LeftStick == ButtonState.Pressed ? " LStick" : String.Empty,
RightStick == ButtonState.Pressed ? " RStick" : String.Empty);