summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2017-08-16 15:01:38 -0400
committerFranklin Wei <git@fwei.tk>2017-08-16 15:01:38 -0400
commit7944969ff7576c0c87be22a6c361e0fa7c2283ed (patch)
tree57b0fccb83c40137520e742abfe08edd8e340b65 /apps/plugins
parent71850e8e69190f565cfa49a3ff3a81b28a2e2bdd (diff)
downloadrockbox-7944969ff7576c0c87be22a6c361e0fa7c2283ed.zip
rockbox-7944969ff7576c0c87be22a6c361e0fa7c2283ed.tar.gz
rockbox-7944969ff7576c0c87be22a6c361e0fa7c2283ed.tar.bz2
rockbox-7944969ff7576c0c87be22a6c361e0fa7c2283ed.tar.xz
puzzles: fix build
Change-Id: Ifb6d7938968a48a1492483b33c84050abcfb75e0
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/puzzles/compress.c1
-rw-r--r--apps/plugins/puzzles/help/blackbox.c1
-rw-r--r--apps/plugins/puzzles/help/bridges.c1
-rw-r--r--apps/plugins/puzzles/help/cube.c1
-rw-r--r--apps/plugins/puzzles/help/dominosa.c1
-rw-r--r--apps/plugins/puzzles/help/fifteen.c1
-rw-r--r--apps/plugins/puzzles/help/filling.c1
-rw-r--r--apps/plugins/puzzles/help/flip.c1
-rw-r--r--apps/plugins/puzzles/help/flood.c1
-rw-r--r--apps/plugins/puzzles/help/galaxies.c1
-rw-r--r--apps/plugins/puzzles/help/guess.c1
-rw-r--r--apps/plugins/puzzles/help/inertia.c1
-rw-r--r--apps/plugins/puzzles/help/keen.c1
-rw-r--r--apps/plugins/puzzles/help/lightup.c1
-rw-r--r--apps/plugins/puzzles/help/loopy.c1
-rw-r--r--apps/plugins/puzzles/help/magnets.c1
-rw-r--r--apps/plugins/puzzles/help/map.c1
-rw-r--r--apps/plugins/puzzles/help/mines.c1
-rw-r--r--apps/plugins/puzzles/help/net.c1
-rw-r--r--apps/plugins/puzzles/help/netslide.c1
-rw-r--r--apps/plugins/puzzles/help/palisade.c1
-rw-r--r--apps/plugins/puzzles/help/pattern.c1
-rw-r--r--apps/plugins/puzzles/help/pearl.c1
-rw-r--r--apps/plugins/puzzles/help/pegs.c1
-rw-r--r--apps/plugins/puzzles/help/range.c1
-rw-r--r--apps/plugins/puzzles/help/rect.c1
-rw-r--r--apps/plugins/puzzles/help/samegame.c1
-rw-r--r--apps/plugins/puzzles/help/signpost.c1
-rw-r--r--apps/plugins/puzzles/help/singles.c1
-rw-r--r--apps/plugins/puzzles/help/sixteen.c1
-rw-r--r--apps/plugins/puzzles/help/slant.c1
-rw-r--r--apps/plugins/puzzles/help/solo.c1
-rw-r--r--apps/plugins/puzzles/help/tents.c1
-rw-r--r--apps/plugins/puzzles/help/towers.c1
-rw-r--r--apps/plugins/puzzles/help/tracks.c1
-rw-r--r--apps/plugins/puzzles/help/twiddle.c1
-rw-r--r--apps/plugins/puzzles/help/undead.c1
-rw-r--r--apps/plugins/puzzles/help/unequal.c1
-rw-r--r--apps/plugins/puzzles/help/unruly.c1
-rw-r--r--apps/plugins/puzzles/help/untangle.c1
40 files changed, 0 insertions, 40 deletions
diff --git a/apps/plugins/puzzles/compress.c b/apps/plugins/puzzles/compress.c
index cddb41b..96f0be5 100644
--- a/apps/plugins/puzzles/compress.c
+++ b/apps/plugins/puzzles/compress.c
@@ -57,7 +57,6 @@ int main()
printf("/* auto-generated on " __DATE__ " by genhelp.sh */\n");
printf("/* orig %d comp %d ratio %g level %d saved %d */\n", inlen, minsz, (double)minsz / inlen, minlev, inlen - minsz);
printf("/* DO NOT EDIT! */\n\n");
- printf("#include \"help.h\"\n");
printf("const char help_text[] = {\n");
dump_bytes(outbuf, len);
diff --git a/apps/plugins/puzzles/help/blackbox.c b/apps/plugins/puzzles/help/blackbox.c
index e323381..d5f5e0c 100644
--- a/apps/plugins/puzzles/help/blackbox.c
+++ b/apps/plugins/puzzles/help/blackbox.c
@@ -2,7 +2,6 @@
/* orig 5427 comp 3142 ratio 0.578957 level 11 saved 2285 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x36, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x39, 0x3a, 0x20, 0x42, 0x6c, 0x61, 0x63, 0x6b,
diff --git a/apps/plugins/puzzles/help/bridges.c b/apps/plugins/puzzles/help/bridges.c
index ae270b4..93461e4 100644
--- a/apps/plugins/puzzles/help/bridges.c
+++ b/apps/plugins/puzzles/help/bridges.c
@@ -2,7 +2,6 @@
/* orig 5211 comp 3117 ratio 0.598158 level 11 saved 2094 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf3, 0x4a, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x36, 0x3a, 0x20, 0x42, 0x72, 0x69, 0x64, 0x67,
diff --git a/apps/plugins/puzzles/help/cube.c b/apps/plugins/puzzles/help/cube.c
index 32e8dfd..71644ef 100644
--- a/apps/plugins/puzzles/help/cube.c
+++ b/apps/plugins/puzzles/help/cube.c
@@ -2,7 +2,6 @@
/* orig 2051 comp 1450 ratio 0.706972 level 11 saved 601 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x37, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x34, 0x3a, 0x20, 0x43, 0x75, 0x62, 0x65, 0x20, 0x0a,
diff --git a/apps/plugins/puzzles/help/dominosa.c b/apps/plugins/puzzles/help/dominosa.c
index 2acf905..49db9a9 100644
--- a/apps/plugins/puzzles/help/dominosa.c
+++ b/apps/plugins/puzzles/help/dominosa.c
@@ -2,7 +2,6 @@
/* orig 2276 comp 1548 ratio 0.680141 level 11 saved 728 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf1, 0x19, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x37, 0x3a, 0x20, 0x44, 0x6f, 0x6d, 0x69, 0x6e,
diff --git a/apps/plugins/puzzles/help/fifteen.c b/apps/plugins/puzzles/help/fifteen.c
index e38e435..fa831f0 100644
--- a/apps/plugins/puzzles/help/fifteen.c
+++ b/apps/plugins/puzzles/help/fifteen.c
@@ -2,7 +2,6 @@
/* orig 1248 comp 937 ratio 0.750801 level 5 saved 311 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf1, 0x28, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x35, 0x3a, 0x20, 0x46, 0x69, 0x66, 0x74, 0x65, 0x65,
diff --git a/apps/plugins/puzzles/help/filling.c b/apps/plugins/puzzles/help/filling.c
index 3810eb3..557d672 100644
--- a/apps/plugins/puzzles/help/filling.c
+++ b/apps/plugins/puzzles/help/filling.c
@@ -2,7 +2,6 @@
/* orig 1796 comp 1242 ratio 0.691537 level 11 saved 554 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x27, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x39, 0x3a, 0x20, 0x46, 0x69, 0x6c, 0x6c, 0x69,
diff --git a/apps/plugins/puzzles/help/flip.c b/apps/plugins/puzzles/help/flip.c
index 48d3798..ec4ffad 100644
--- a/apps/plugins/puzzles/help/flip.c
+++ b/apps/plugins/puzzles/help/flip.c
@@ -2,7 +2,6 @@
/* orig 1521 comp 1101 ratio 0.723866 level 11 saved 420 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf2, 0x2e, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x34, 0x3a, 0x20, 0x46, 0x6c, 0x69, 0x70, 0x20,
diff --git a/apps/plugins/puzzles/help/flood.c b/apps/plugins/puzzles/help/flood.c
index 15bfa0a..c7f813c 100644
--- a/apps/plugins/puzzles/help/flood.c
+++ b/apps/plugins/puzzles/help/flood.c
@@ -2,7 +2,6 @@
/* orig 2375 comp 1591 ratio 0.669895 level 11 saved 784 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf3, 0x44, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x39, 0x3a, 0x20, 0x46, 0x6c, 0x6f, 0x6f, 0x64,
diff --git a/apps/plugins/puzzles/help/galaxies.c b/apps/plugins/puzzles/help/galaxies.c
index 8a115a9..b0d14a6 100644
--- a/apps/plugins/puzzles/help/galaxies.c
+++ b/apps/plugins/puzzles/help/galaxies.c
@@ -2,7 +2,6 @@
/* orig 2504 comp 1733 ratio 0.692093 level 11 saved 771 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf2, 0x64, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x38, 0x3a, 0x20, 0x47, 0x61, 0x6c, 0x61, 0x78,
diff --git a/apps/plugins/puzzles/help/guess.c b/apps/plugins/puzzles/help/guess.c
index 97dd875..48a8a23 100644
--- a/apps/plugins/puzzles/help/guess.c
+++ b/apps/plugins/puzzles/help/guess.c
@@ -2,7 +2,6 @@
/* orig 3030 comp 1882 ratio 0.621122 level 11 saved 1148 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf2, 0x29, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x35, 0x3a, 0x20, 0x47, 0x75, 0x65, 0x73, 0x73,
diff --git a/apps/plugins/puzzles/help/inertia.c b/apps/plugins/puzzles/help/inertia.c
index d8cdd57..080f302 100644
--- a/apps/plugins/puzzles/help/inertia.c
+++ b/apps/plugins/puzzles/help/inertia.c
@@ -2,7 +2,6 @@
/* orig 2265 comp 1577 ratio 0.696247 level 11 saved 688 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x1e, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x34, 0x3a, 0x20, 0x49, 0x6e, 0x65, 0x72, 0x74,
diff --git a/apps/plugins/puzzles/help/keen.c b/apps/plugins/puzzles/help/keen.c
index 592828e..e31f9b2 100644
--- a/apps/plugins/puzzles/help/keen.c
+++ b/apps/plugins/puzzles/help/keen.c
@@ -2,7 +2,6 @@
/* orig 3936 comp 2381 ratio 0.604929 level 11 saved 1555 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf4, 0x20, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x30, 0x3a, 0x20, 0x4b, 0x65, 0x65, 0x6e, 0x20,
diff --git a/apps/plugins/puzzles/help/lightup.c b/apps/plugins/puzzles/help/lightup.c
index 30a67c7..df6609f 100644
--- a/apps/plugins/puzzles/help/lightup.c
+++ b/apps/plugins/puzzles/help/lightup.c
@@ -2,7 +2,6 @@
/* orig 2314 comp 1548 ratio 0.668971 level 11 saved 766 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x42, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x31, 0x3a, 0x20, 0x4c, 0x69, 0x67, 0x68, 0x74,
diff --git a/apps/plugins/puzzles/help/loopy.c b/apps/plugins/puzzles/help/loopy.c
index c2452e7..5a13c4e 100644
--- a/apps/plugins/puzzles/help/loopy.c
+++ b/apps/plugins/puzzles/help/loopy.c
@@ -2,7 +2,6 @@
/* orig 2264 comp 1613 ratio 0.712456 level 11 saved 651 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf1, 0x4d, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x33, 0x3a, 0x20, 0x4c, 0x6f, 0x6f, 0x70, 0x79,
diff --git a/apps/plugins/puzzles/help/magnets.c b/apps/plugins/puzzles/help/magnets.c
index 8311a27..1d01622 100644
--- a/apps/plugins/puzzles/help/magnets.c
+++ b/apps/plugins/puzzles/help/magnets.c
@@ -2,7 +2,6 @@
/* orig 2498 comp 1657 ratio 0.663331 level 11 saved 841 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf3, 0x3d, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x33, 0x3a, 0x20, 0x4d, 0x61, 0x67, 0x6e, 0x65,
diff --git a/apps/plugins/puzzles/help/map.c b/apps/plugins/puzzles/help/map.c
index f998cda..6e84320 100644
--- a/apps/plugins/puzzles/help/map.c
+++ b/apps/plugins/puzzles/help/map.c
@@ -2,7 +2,6 @@
/* orig 3464 comp 2297 ratio 0.663106 level 11 saved 1167 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x2d, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x32, 0x3a, 0x20, 0x4d, 0x61, 0x70, 0x20, 0x0a,
diff --git a/apps/plugins/puzzles/help/mines.c b/apps/plugins/puzzles/help/mines.c
index 056b97f..1b952f4 100644
--- a/apps/plugins/puzzles/help/mines.c
+++ b/apps/plugins/puzzles/help/mines.c
@@ -2,7 +2,6 @@
/* orig 3796 comp 2357 ratio 0.620917 level 11 saved 1439 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x2d, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x32, 0x3a, 0x20, 0x4d, 0x69, 0x6e, 0x65, 0x73,
diff --git a/apps/plugins/puzzles/help/net.c b/apps/plugins/puzzles/help/net.c
index 5674940..a27792a 100644
--- a/apps/plugins/puzzles/help/net.c
+++ b/apps/plugins/puzzles/help/net.c
@@ -2,7 +2,6 @@
/* orig 3445 comp 2367 ratio 0.687083 level 11 saved 1078 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf4, 0x58, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x3a, 0x20, 0x4e, 0x65, 0x74, 0x20, 0x0a, 0x28,
diff --git a/apps/plugins/puzzles/help/netslide.c b/apps/plugins/puzzles/help/netslide.c
index 96e700e..34ee2ee 100644
--- a/apps/plugins/puzzles/help/netslide.c
+++ b/apps/plugins/puzzles/help/netslide.c
@@ -2,7 +2,6 @@
/* orig 524 comp 416 ratio 0.793893 level 3 saved 108 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x30, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x39, 0x3a, 0x20, 0x4e, 0x65, 0x74, 0x73, 0x6c, 0x69,
diff --git a/apps/plugins/puzzles/help/palisade.c b/apps/plugins/puzzles/help/palisade.c
index 323774f..713720a 100644
--- a/apps/plugins/puzzles/help/palisade.c
+++ b/apps/plugins/puzzles/help/palisade.c
@@ -2,7 +2,6 @@
/* orig 1110 comp 894 ratio 0.805405 level 3 saved 216 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x2c, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x34, 0x31, 0x3a, 0x20, 0x50, 0x61, 0x6c, 0x69, 0x73,
diff --git a/apps/plugins/puzzles/help/pattern.c b/apps/plugins/puzzles/help/pattern.c
index 5f11768..2671ae9 100644
--- a/apps/plugins/puzzles/help/pattern.c
+++ b/apps/plugins/puzzles/help/pattern.c
@@ -2,7 +2,6 @@
/* orig 2123 comp 1468 ratio 0.691474 level 4 saved 655 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x4e, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x30, 0x3a, 0x20, 0x50, 0x61, 0x74, 0x74, 0x65,
diff --git a/apps/plugins/puzzles/help/pearl.c b/apps/plugins/puzzles/help/pearl.c
index c32a62d..b444d2c 100644
--- a/apps/plugins/puzzles/help/pearl.c
+++ b/apps/plugins/puzzles/help/pearl.c
@@ -2,7 +2,6 @@
/* orig 2565 comp 1606 ratio 0.626121 level 11 saved 959 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x4e, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x36, 0x3a, 0x20, 0x50, 0x65, 0x61, 0x72, 0x6c,
diff --git a/apps/plugins/puzzles/help/pegs.c b/apps/plugins/puzzles/help/pegs.c
index 9541fee..eefeea9 100644
--- a/apps/plugins/puzzles/help/pegs.c
+++ b/apps/plugins/puzzles/help/pegs.c
@@ -2,7 +2,6 @@
/* orig 1686 comp 1254 ratio 0.743772 level 3 saved 432 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x11, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x36, 0x3a, 0x20, 0x50, 0x65, 0x67, 0x73, 0x20,
diff --git a/apps/plugins/puzzles/help/range.c b/apps/plugins/puzzles/help/range.c
index ca39195..1b5dc9d 100644
--- a/apps/plugins/puzzles/help/range.c
+++ b/apps/plugins/puzzles/help/range.c
@@ -2,7 +2,6 @@
/* orig 2029 comp 1393 ratio 0.686545 level 4 saved 636 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf4, 0x25, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x35, 0x3a, 0x20, 0x52, 0x61, 0x6e, 0x67, 0x65,
diff --git a/apps/plugins/puzzles/help/rect.c b/apps/plugins/puzzles/help/rect.c
index 0397c15..59c31a0 100644
--- a/apps/plugins/puzzles/help/rect.c
+++ b/apps/plugins/puzzles/help/rect.c
@@ -2,7 +2,6 @@
/* orig 3534 comp 2351 ratio 0.665252 level 11 saved 1183 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x4f, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x38, 0x3a, 0x20, 0x52, 0x65, 0x63, 0x74, 0x61, 0x6e,
diff --git a/apps/plugins/puzzles/help/samegame.c b/apps/plugins/puzzles/help/samegame.c
index a4968f0..e9cac91 100644
--- a/apps/plugins/puzzles/help/samegame.c
+++ b/apps/plugins/puzzles/help/samegame.c
@@ -2,7 +2,6 @@
/* orig 2464 comp 1626 ratio 0.659903 level 11 saved 838 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x04, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x33, 0x3a, 0x20, 0x53, 0x61, 0x6d, 0x65, 0x20,
diff --git a/apps/plugins/puzzles/help/signpost.c b/apps/plugins/puzzles/help/signpost.c
index 283e0d7..8e5cffd 100644
--- a/apps/plugins/puzzles/help/signpost.c
+++ b/apps/plugins/puzzles/help/signpost.c
@@ -2,7 +2,6 @@
/* orig 3045 comp 1899 ratio 0.623645 level 11 saved 1146 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf3, 0x28, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x34, 0x3a, 0x20, 0x53, 0x69, 0x67, 0x6e, 0x70,
diff --git a/apps/plugins/puzzles/help/singles.c b/apps/plugins/puzzles/help/singles.c
index 63922fd..9dfeb21 100644
--- a/apps/plugins/puzzles/help/singles.c
+++ b/apps/plugins/puzzles/help/singles.c
@@ -2,7 +2,6 @@
/* orig 1385 comp 1059 ratio 0.764621 level 11 saved 326 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf3, 0x2c, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x32, 0x3a, 0x20, 0x53, 0x69, 0x6e, 0x67, 0x6c,
diff --git a/apps/plugins/puzzles/help/sixteen.c b/apps/plugins/puzzles/help/sixteen.c
index a390fd0..e0b5981 100644
--- a/apps/plugins/puzzles/help/sixteen.c
+++ b/apps/plugins/puzzles/help/sixteen.c
@@ -2,7 +2,6 @@
/* orig 2533 comp 1760 ratio 0.694828 level 11 saved 773 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf1, 0x3a, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x36, 0x3a, 0x20, 0x53, 0x69, 0x78, 0x74, 0x65, 0x65,
diff --git a/apps/plugins/puzzles/help/slant.c b/apps/plugins/puzzles/help/slant.c
index 42c2de2..c153138 100644
--- a/apps/plugins/puzzles/help/slant.c
+++ b/apps/plugins/puzzles/help/slant.c
@@ -2,7 +2,6 @@
/* orig 2374 comp 1659 ratio 0.698821 level 11 saved 715 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf3, 0x51, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x30, 0x3a, 0x20, 0x53, 0x6c, 0x61, 0x6e, 0x74,
diff --git a/apps/plugins/puzzles/help/solo.c b/apps/plugins/puzzles/help/solo.c
index 0913368..12ca468 100644
--- a/apps/plugins/puzzles/help/solo.c
+++ b/apps/plugins/puzzles/help/solo.c
@@ -2,7 +2,6 @@
/* orig 6245 comp 3641 ratio 0.583026 level 11 saved 2604 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x52, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x31, 0x3a, 0x20, 0x53, 0x6f, 0x6c, 0x6f, 0x20,
diff --git a/apps/plugins/puzzles/help/tents.c b/apps/plugins/puzzles/help/tents.c
index 51674e3..cb4b288 100644
--- a/apps/plugins/puzzles/help/tents.c
+++ b/apps/plugins/puzzles/help/tents.c
@@ -2,7 +2,6 @@
/* orig 2139 comp 1397 ratio 0.653109 level 11 saved 742 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x25, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x35, 0x3a, 0x20, 0x54, 0x65, 0x6e, 0x74, 0x73,
diff --git a/apps/plugins/puzzles/help/towers.c b/apps/plugins/puzzles/help/towers.c
index ffa4474..f3812bc 100644
--- a/apps/plugins/puzzles/help/towers.c
+++ b/apps/plugins/puzzles/help/towers.c
@@ -2,7 +2,6 @@
/* orig 3527 comp 2209 ratio 0.626311 level 11 saved 1318 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf4, 0x25, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x31, 0x3a, 0x20, 0x54, 0x6f, 0x77, 0x65, 0x72,
diff --git a/apps/plugins/puzzles/help/tracks.c b/apps/plugins/puzzles/help/tracks.c
index 8110e37..df192e3 100644
--- a/apps/plugins/puzzles/help/tracks.c
+++ b/apps/plugins/puzzles/help/tracks.c
@@ -2,7 +2,6 @@
/* orig 1858 comp 1275 ratio 0.686222 level 11 saved 583 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x2b, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x34, 0x30, 0x3a, 0x20, 0x54, 0x72, 0x61, 0x63, 0x6b,
diff --git a/apps/plugins/puzzles/help/twiddle.c b/apps/plugins/puzzles/help/twiddle.c
index 31e4ccd..a9aaf41 100644
--- a/apps/plugins/puzzles/help/twiddle.c
+++ b/apps/plugins/puzzles/help/twiddle.c
@@ -2,7 +2,6 @@
/* orig 2914 comp 1863 ratio 0.639327 level 11 saved 1051 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf4, 0x06, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x37, 0x3a, 0x20, 0x54, 0x77, 0x69, 0x64, 0x64, 0x6c,
diff --git a/apps/plugins/puzzles/help/undead.c b/apps/plugins/puzzles/help/undead.c
index d2f61d1..d359099 100644
--- a/apps/plugins/puzzles/help/undead.c
+++ b/apps/plugins/puzzles/help/undead.c
@@ -2,7 +2,6 @@
/* orig 3275 comp 2117 ratio 0.646412 level 11 saved 1158 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x2b, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x37, 0x3a, 0x20, 0x55, 0x6e, 0x64, 0x65, 0x61,
diff --git a/apps/plugins/puzzles/help/unequal.c b/apps/plugins/puzzles/help/unequal.c
index affdae1..9d5712c 100644
--- a/apps/plugins/puzzles/help/unequal.c
+++ b/apps/plugins/puzzles/help/unequal.c
@@ -2,7 +2,6 @@
/* orig 3917 comp 2359 ratio 0.602247 level 11 saved 1558 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf4, 0x23, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x32, 0x37, 0x3a, 0x20, 0x55, 0x6e, 0x65, 0x71, 0x75,
diff --git a/apps/plugins/puzzles/help/unruly.c b/apps/plugins/puzzles/help/unruly.c
index bf67cf7..07355e5 100644
--- a/apps/plugins/puzzles/help/unruly.c
+++ b/apps/plugins/puzzles/help/unruly.c
@@ -2,7 +2,6 @@
/* orig 1684 comp 1231 ratio 0.730998 level 11 saved 453 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x4c, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x33, 0x38, 0x3a, 0x20, 0x55, 0x6e, 0x72, 0x75, 0x6c,
diff --git a/apps/plugins/puzzles/help/untangle.c b/apps/plugins/puzzles/help/untangle.c
index b81ac20..b6b398c 100644
--- a/apps/plugins/puzzles/help/untangle.c
+++ b/apps/plugins/puzzles/help/untangle.c
@@ -2,7 +2,6 @@
/* orig 747 comp 620 ratio 0.829987 level 4 saved 127 */
/* DO NOT EDIT! */
-#include "help.h"
const char help_text[] = {
0xf0, 0x2e, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
0x20, 0x31, 0x38, 0x3a, 0x20, 0x55, 0x6e, 0x74, 0x61, 0x6e,