forked from len0rd/rockbox
It used to be that each puzzle had a complete copy of the entire puzzles manual and the "quick help" text for every single puzzle. This was obviously a waste, so now each puzzle only has the sections of the manual that apply to it, saving about 100KB or so per puzzle. This also has the added benefit of shrinking binary size enough to allow full help support on the c200v2, which has been enabled. Change-Id: I76c799635de058e4a48e0c18b79537857af7cf85
14 lines
284 B
C
14 lines
284 B
C
#include "help.h"
|
|
#include "lib/simple_viewer.h"
|
|
|
|
void full_help(const char *name)
|
|
{
|
|
unsigned old_bg = rb->lcd_get_background();
|
|
|
|
rb->lcd_set_foreground(LCD_WHITE);
|
|
rb->lcd_set_background(LCD_BLACK);
|
|
|
|
view_text(name, help_text);
|
|
|
|
rb->lcd_set_background(old_bg);
|
|
}
|