rename set_raw_touch_position_ to add_raw_touch_position_ (#5962)

This commit is contained in:
NP v/d Spek
2023-12-18 20:23:22 +01:00
committed by GitHub
parent d99598bba6
commit 8961e8ab32
9 changed files with 10 additions and 10 deletions
@@ -74,7 +74,7 @@ void EKTF2232Touchscreen::update_touches() {
uint8_t *d = raw + 1 + (i * 3);
x_raw = (d[0] & 0xF0) << 4 | d[1];
y_raw = (d[0] & 0x0F) << 8 | d[2];
this->set_raw_touch_position_(i, x_raw, y_raw);
this->add_raw_touch_position_(i, x_raw, y_raw);
}
}