1
0
Fork 0
forked from len0rd/rockbox

Adapted remote LCD driver and player graphics library to the new bitmap function naming scheme.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7047 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-07-07 00:05:29 +00:00
parent f894a4c269
commit d7f9439353
5 changed files with 14 additions and 8 deletions

View file

@ -45,5 +45,8 @@ void pgfx_bitmap_part(const unsigned char *src, int src_x, int src_y,
int stride, int x, int y, int width, int height);
void pgfx_bitmap(const unsigned char *src, int x, int y, int width, int height);
#define pgfx_mono_bitmap_part pgfx_bitmap_part
#define pgfx_mono_bitmap pgfx_bitmap
#endif /* HAVE_LCD_CHARCELLS */
#endif /* __PGFX_H__ */