diff options
author | Dave Chapman <dave@dchapman.com> | 2005-11-08 00:17:56 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-11-08 00:17:56 +0000 |
commit | a8a8c9db444e8e03cff2c6e3db925df24f8a324e (patch) | |
tree | ced3ce6dcd264987a8dc8e169ce931e29b3f0fb8 | |
parent | a8c1c203058a1f66ef73791f7a6b834f16db266e (diff) |
Remove unnecessary #ifdef
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7783 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/export/lcd.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h index 28458fedb2..88bbfe1615 100644 --- a/firmware/export/lcd.h +++ b/firmware/export/lcd.h @@ -122,11 +122,7 @@ extern void lcd_jump_scroll_delay(int ms); /* Low-level drawing function types */ typedef void lcd_pixelfunc_type(int x, int y); -#if LCD_DEPTH==16 typedef void lcd_blockfunc_type(unsigned char *address, unsigned mask, unsigned bits); -#else -typedef void lcd_blockfunc_type(unsigned char *address, unsigned mask, unsigned bits); -#endif #ifdef HAVE_LCD_BITMAP |