CSPspEmu.Gui.CommonGuiInput.KeyRelease C# (CSharp) Method

KeyRelease() public method

public KeyRelease ( string Key ) : void
Key string
return void
        public void KeyRelease(string Key)
        {
            Key = NormalizeKeyName(Key);
            TryUpdateAnalog(Key, false);
            var Buttons = GetButtonsFromKeys(Key);
            //Console.WriteLine("KeyRelease: {0}, {1}", Key, Buttons);
            SceCtrlData.UpdateButtons(Buttons, false);
        }