From 2d7b692052a99674654b39c061ee7cd79db77a1a Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Wed, 12 Jun 2019 23:29:46 +0200 Subject: Added support for Function Keys as _EVENT_FUNCTION1 Those are normally the first 4 to 10 function keys. others are addressed with [ instead of O and might become _EVENT_FUNCTION2 in the future --- src/cInput.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/cInput.cpp') diff --git a/src/cInput.cpp b/src/cInput.cpp index 891be1f..b11bbb5 100644 --- a/src/cInput.cpp +++ b/src/cInput.cpp @@ -64,6 +64,11 @@ sInputEvent cInput::poll() ret.type = _EVENT_KEY; } } + else if(buff[0] == 'O') + { + ret.c = buff[1]; + ret.type = _EVENT_FUNCTION1; + } } else { -- cgit v1.2.3