diff options
author | inmarket <andrewh@inmarket.com.au> | 2018-07-08 13:05:27 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2018-07-08 13:05:27 +1000 |
commit | cbf1d4dfa095bc1fae927228ad108b6086738f01 (patch) | |
tree | 158ad908c0cd4d2f96218dfbbf8eb647c2609b91 /src/ginput | |
parent | a24fab0d7217aaae1463f62d5d1381ef820cfa17 (diff) | |
download | uGFX-cbf1d4dfa095bc1fae927228ad108b6086738f01.tar.gz uGFX-cbf1d4dfa095bc1fae927228ad108b6086738f01.tar.bz2 uGFX-cbf1d4dfa095bc1fae927228ad108b6086738f01.zip |
Added type gFont to replace V2.x font_t
Diffstat (limited to 'src/ginput')
-rw-r--r-- | src/ginput/ginput_mouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ginput/ginput_mouse.c b/src/ginput/ginput_mouse.c index 87704f40..af65a60a 100644 --- a/src/ginput/ginput_mouse.c +++ b/src/ginput/ginput_mouse.c @@ -467,7 +467,7 @@ static void MousePoll(void *param) { gPoint points[4]; // The x, y readings obtained from the mouse for each test point uint32_t err; #if GDISP_NEED_TEXT - font_t font1, font2; + gFont font1, font2; #endif #if GDISP_NEED_TEXT |