summaryrefslogtreecommitdiff
path: root/uisimulator/common
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/common')
-rw-r--r--uisimulator/common/stubs.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index af715c6368..89e3cea102 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -180,10 +180,18 @@ void mpeg_set_pitch(int pitch)
180void lcd_clearrect (int x, int y, int nx, int ny) 180void lcd_clearrect (int x, int y, int nx, int ny)
181{ 181{
182 /* Reprint char if you want to change anything */ 182 /* Reprint char if you want to change anything */
183 (void)x;
184 (void)y;
185 (void)nx;
186 (void)ny;
183} 187}
184 188
185void lcd_fillrect (int x, int y, int nx, int ny) 189void lcd_fillrect (int x, int y, int nx, int ny)
186{ 190{
187 /* Reprint char if you want to change display anything */ 191 /* Reprint char if you want to change display anything */
192 (void)x;
193 (void)y;
194 (void)nx;
195 (void)ny;
188} 196}
189#endif 197#endif