summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve_kbd.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/fe310/eos/eve_kbd.c')
-rw-r--r--code/fe310/eos/eve_kbd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/code/fe310/eos/eve_kbd.c b/code/fe310/eos/eve_kbd.c
index 00d5328..995d0ca 100644
--- a/code/fe310/eos/eve_kbd.c
+++ b/code/fe310/eos/eve_kbd.c
@@ -37,8 +37,8 @@ void eos_kbd_draw(EOSKbd *kbd, uint8_t tag0, int touch_idx) {
EOSTouch *t = eos_touch_evt(tag0, touch_idx, 1, 127, &evt);
if (t && evt) {
- if (evt & EOS_TOUCH_ETYPE_DOWN) {
- uint8_t _tag = t->tag;
+ if (evt & EOS_TOUCH_ETYPE_TAG_DOWN) {
+ uint8_t _tag = t->tag_down;
if (_tag >= KEY_SHIFT && _tag <= KEY_FN) {
if (touch_idx == 0) {
@@ -67,8 +67,8 @@ void eos_kbd_draw(EOSKbd *kbd, uint8_t tag0, int touch_idx) {
}
}
}
- if (evt & EOS_TOUCH_ETYPE_UP) {
- uint8_t _tag = t->tag_prev;
+ if (evt & EOS_TOUCH_ETYPE_TAG_UP) {
+ uint8_t _tag = t->tag_up;
if (_tag >= KEY_SHIFT && _tag <= KEY_FN) {
if (touch_idx == 0) {