diff options
author | Robert Hak <adiamas@rockbox.org> | 2002-05-04 10:00:47 +0000 |
---|---|---|
committer | Robert Hak <adiamas@rockbox.org> | 2002-05-04 10:00:47 +0000 |
commit | a5e942f64ddb8af4e835519f56117c00175c65a4 (patch) | |
tree | a574475a03e7e92cad7773a5423a85d7fb1edb21 /uisimulator | |
parent | 4d4ec3aa0b2c0bb45e7c004885accee303f1277f (diff) |
add reference to its header
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@413 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/screensaver.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/uisimulator/screensaver.c b/uisimulator/screensaver.c index 5090155bfb..8613967691 100644 --- a/uisimulator/screensaver.c +++ b/uisimulator/screensaver.c @@ -17,6 +17,7 @@ * ****************************************************************************/ +#include "screensaver.h" #include "types.h" #include "lcd.h" #include "button.h" @@ -30,16 +31,6 @@ #define SS_TITLE "Boxes" #define SS_TITLE_FONT 2 - -void drawrect(int x, int y, int x2, int y2) -{ - lcd_drawline(x, y, x2, y); - lcd_drawline(x, y2, x2, y2); - - lcd_drawline(x, y, x, y2); - lcd_drawline(x2, y, x2, y2); -} - void ss_loop(void) { int b; |