diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-04-11 12:45:06 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-11 12:45:06 +0000 |
| commit | 2ba9b895aafef38bf0bed064d5356328a926d431 (patch) | |
| tree | e6b9bd09ec02c62c725aea17eb5184fe541e4179 | |
| parent | fa2669667b142663045cd50e8972d8ed7d51f8b1 (diff) | |
| download | rockbox-2ba9b895aafef38bf0bed064d5356328a926d431.zip rockbox-2ba9b895aafef38bf0bed064d5356328a926d431.tar.gz rockbox-2ba9b895aafef38bf0bed064d5356328a926d431.tar.bz2 rockbox-2ba9b895aafef38bf0bed064d5356328a926d431.tar.xz | |
moved a #endif to stop compiler warnings for uisim on Linux
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@84 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/lcd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/lcd.h b/firmware/lcd.h index 449adba..cd65925 100644 --- a/firmware/lcd.h +++ b/firmware/lcd.h @@ -299,8 +299,6 @@ extern void lcd_pattern (int which,char const *pattern,int count); static inline void lcd_goto (int x,int y) { lcd_instruction (LCD_CURSOR(x,y)); } -#endif - /*** BACKLIGHT ***/ static inline void lcd_toggle_backlight (void) @@ -314,4 +312,6 @@ static inline void lcd_turn_off_backlight (void) /*** ICONS ***/ +#endif /* HAVE_LCD_CHARCELLS */ + #endif |