summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/help.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/help.c')
-rw-r--r--apps/plugins/puzzles/help.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/plugins/puzzles/help.c b/apps/plugins/puzzles/help.c
deleted file mode 100644
index c45f50e65e..0000000000
--- a/apps/plugins/puzzles/help.c
+++ /dev/null
@@ -1,14 +0,0 @@
1#include "help.h"
2#include "lib/simple_viewer.h"
3
4void full_help(const char *name)
5{
6 unsigned old_bg = rb->lcd_get_background();
7
8 rb->lcd_set_foreground(LCD_WHITE);
9 rb->lcd_set_background(LCD_BLACK);
10
11 view_text(name, help_text);
12
13 rb->lcd_set_background(old_bg);
14}