From 3bf29b074cc47d824adc49701c65ef08303f030c Mon Sep 17 00:00:00 2001 From: thefiddler Date: Mon, 11 Aug 2014 08:58:34 +0200 Subject: [PATCH] [Input] Fixed debug display of Back gamepad button --- Source/OpenTK/Input/GamePadButtons.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/OpenTK/Input/GamePadButtons.cs b/Source/OpenTK/Input/GamePadButtons.cs index 3f866e89..3910d2e1 100644 --- a/Source/OpenTK/Input/GamePadButtons.cs +++ b/Source/OpenTK/Input/GamePadButtons.cs @@ -175,6 +175,8 @@ namespace OpenTK.Input sb.Append("St"); if (BigButton == ButtonState.Pressed) sb.Append("Gd"); + if (Back == ButtonState.Pressed) + sb.Append("Bk"); if (LeftShoulder == ButtonState.Pressed) sb.Append("L"); if (RightShoulder == ButtonState.Pressed)