From 8e7771ef6328b480727abf3cca79997ee4b6ee42 Mon Sep 17 00:00:00 2001 From: Nathan Adams Date: Sun, 3 Jun 2012 15:42:58 -0500 Subject: [PATCH] Must be static --- axios/Engine/Extensions/InputState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axios/Engine/Extensions/InputState.cs b/axios/Engine/Extensions/InputState.cs index 53c0165..63d8c41 100644 --- a/axios/Engine/Extensions/InputState.cs +++ b/axios/Engine/Extensions/InputState.cs @@ -47,7 +47,7 @@ namespace Axios.Engine.Extensions return input.IsNewButtonRelease(button, PlayerIndex.One, out p); } - public bool IsNewKeyRelease(this InputState input, Keys key) + public static bool IsNewKeyRelease(this InputState input, Keys key) { PlayerIndex p; return input.IsNewKeyRelease(key, PlayerIndex.One, out p);