diff options
Diffstat (limited to 'reduced_system_layer.c')
-rwxr-xr-x | reduced_system_layer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/reduced_system_layer.c b/reduced_system_layer.c index 01a39e5..6eb5144 100755 --- a/reduced_system_layer.c +++ b/reduced_system_layer.c @@ -87,9 +87,6 @@ enum { IPv4 = 1, IPv6 = 2, - BUTTON_LEFT = 256, - BUTTON_MIDDLE, - BUTTON_RIGHT, KEY_LEFT, KEY_RIGHT, KEY_UP, @@ -109,8 +106,11 @@ enum { KEY_END, KEY_PAGEUP, KEY_PAGEDOWN, - KEY_F_ = 256 * 2, - KEY_KP_ = 256 * 3, + KEY_KP_ = 128, + KEY_F_ = 256, + BUTTON_LEFT = KEY_F_ + 64, + BUTTON_MIDDLE, + BUTTON_RIGHT, }; typedef struct { |