diff options
| -rw-r--r-- | uisimulator/common/stubs.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 6536706..af715c6 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -175,3 +175,15 @@ void mpeg_set_pitch(int pitch) { (void)pitch; } + +#ifdef HAVE_LCD_CHARCELLS +void lcd_clearrect (int x, int y, int nx, int ny) +{ + /* Reprint char if you want to change anything */ +} + +void lcd_fillrect (int x, int y, int nx, int ny) +{ + /* Reprint char if you want to change display anything */ +} +#endif |