diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-07-03 02:02:27 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-07-03 02:02:27 +0200 |
commit | d8ced7b070beaa010f557c4c244c5c386d4e6efd (patch) | |
tree | 9f676f5ec4654f5d4b306393b2c35c34e50bdfe4 /code/fe310/eos/eve/screen/page.c | |
parent | f550a31fda2cb7d76e917ab69d075daa1557bf99 (diff) |
str widget draw selection and cursor implemented
Diffstat (limited to 'code/fe310/eos/eve/screen/page.c')
-rw-r--r-- | code/fe310/eos/eve/screen/page.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/fe310/eos/eve/screen/page.c b/code/fe310/eos/eve/screen/page.c index d96a2ba..b1b3985 100644 --- a/code/fe310/eos/eve/screen/page.c +++ b/code/fe310/eos/eve/screen/page.c @@ -32,11 +32,11 @@ int16_t eve_page_y(EVEPage *page, int16_t y) { return y + page->win_y - page->window->g.y; } -int16_t eve_page_scrx(EVEPage *page, int16_t x) { +int16_t eve_page_scr_x(EVEPage *page, int16_t x) { return x - page->win_x + page->window->g.x; } -int16_t eve_page_scry(EVEPage *page, int16_t y) { +int16_t eve_page_scr_y(EVEPage *page, int16_t y) { return y - page->win_y + page->window->g.y; } |