summaryrefslogtreecommitdiffstats
path: root/uisimulator/common
diff options
context:
space:
mode:
authorKjell Ericson <kjell@haxx.se>2002-10-21 20:16:14 +0000
committerKjell Ericson <kjell@haxx.se>2002-10-21 20:16:14 +0000
commitd19b9edfa44e4d10008a0eadd8d20760f9208b2b (patch)
tree38ad7ae554576155d2231c0a6896d3b79a4d3ca0 /uisimulator/common
parentd317ddb333a7b72517a2737a6ca143f471c4d6aa (diff)
downloadrockbox-d19b9edfa44e4d10008a0eadd8d20760f9208b2b.tar.gz
rockbox-d19b9edfa44e4d10008a0eadd8d20760f9208b2b.zip
Added stubs that shall not be in the player simulator.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2733 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common')
-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)
{
(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