summaryrefslogtreecommitdiff
path: root/apps/gui/backdrop.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/backdrop.c')
-rw-r--r--apps/gui/backdrop.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/gui/backdrop.c b/apps/gui/backdrop.c
index 7e56dcb7db..058eaa5de4 100644
--- a/apps/gui/backdrop.c
+++ b/apps/gui/backdrop.c
@@ -211,7 +211,29 @@ void remote_backdrop_hide(void)
211{ 211{
212 lcd_remote_set_backdrop(NULL); 212 lcd_remote_set_backdrop(NULL);
213} 213}
214#else
215/* api functions */
216bool remote_backdrop_load(enum backdrop_type bdrop,
217 const char *filename)
218{
219 (void)bdrop; (void)filename;
220 return true;
221}
222
223void remote_backdrop_show(enum backdrop_type bdrop)
224{
225 (void)bdrop;
226}
214 227
228void remote_backdrop_unload(enum backdrop_type bdrop)
229{
230 (void)bdrop;
231}
232
233
234void remote_backdrop_hide(void)
235{
236}
215#endif 237#endif
216 238
217 239