diff options
| -rw-r--r-- | apps/plugins/puzzles/help.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugins/puzzles/help.c b/apps/plugins/puzzles/help.c index 13ca7ea..4a2560e 100644 --- a/apps/plugins/puzzles/help.c +++ b/apps/plugins/puzzles/help.c @@ -4,6 +4,11 @@ void full_help(const char *name) { int ch_num = -1; + + /* dirty hack */ + if(!strcmp(name, "Train Tracks")) + name = "Tracks"; + /* search the help text for a chapter with this name */ for(int ch = 0; ch < help_numchapters; ++ch) { |