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

KeyPress() public method

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