summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/common/stubs.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index 6536706620..af715c6368 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -175,3 +175,15 @@ void mpeg_set_pitch(int pitch)
175{ 175{
176 (void)pitch; 176 (void)pitch;
177} 177}
178
179#ifdef HAVE_LCD_CHARCELLS
180void lcd_clearrect (int x, int y, int nx, int ny)
181{
182 /* Reprint char if you want to change anything */
183}
184
185void lcd_fillrect (int x, int y, int nx, int ny)
186{
187 /* Reprint char if you want to change display anything */
188}
189#endif