Add empty font_lock() for bootloaders to fix builds.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30817 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2011-10-21 20:15:26 +00:00
parent e28f8225f5
commit c032b9d083

View file

@ -965,6 +965,12 @@ void font_init(void)
{
}
void font_lock(int font_id, bool lock)
{
(void)font_id;
(void)lock;
}
/*
* Bootloader only supports the built-in sysfont.
*/