forked from len0rd/rockbox
Fix remote backdrop crashes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24357 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a6bd83a315
commit
6f0f98da1d
3 changed files with 23 additions and 5 deletions
|
|
@ -211,7 +211,29 @@ void remote_backdrop_hide(void)
|
|||
{
|
||||
lcd_remote_set_backdrop(NULL);
|
||||
}
|
||||
#else
|
||||
/* api functions */
|
||||
bool remote_backdrop_load(enum backdrop_type bdrop,
|
||||
const char *filename)
|
||||
{
|
||||
(void)bdrop; (void)filename;
|
||||
return true;
|
||||
}
|
||||
|
||||
void remote_backdrop_show(enum backdrop_type bdrop)
|
||||
{
|
||||
(void)bdrop;
|
||||
}
|
||||
|
||||
void remote_backdrop_unload(enum backdrop_type bdrop)
|
||||
{
|
||||
(void)bdrop;
|
||||
}
|
||||
|
||||
|
||||
void remote_backdrop_hide(void)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue