mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-04-12 00:47:49 -04:00
Fix checkwps reds and non-touchscreen warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30774 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3b12634e6b
commit
55f078f4b5
2 changed files with 9 additions and 0 deletions
|
|
@ -220,6 +220,7 @@ bool radio_hardware_present(void)
|
|||
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
static int loaded_fonts = 0;
|
||||
static struct font _font;
|
||||
int font_load(const char *path)
|
||||
{
|
||||
int id = 2 + loaded_fonts;
|
||||
|
|
@ -231,6 +232,11 @@ void font_unload(int font_id)
|
|||
{
|
||||
(void)font_id;
|
||||
}
|
||||
|
||||
struct font* font_get(int font)
|
||||
{
|
||||
return &_font;
|
||||
}
|
||||
#endif
|
||||
|
||||
int main(int argc, char **argv)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue