summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/src/list.c')
-rw-r--r--apps/plugins/puzzles/src/list.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/apps/plugins/puzzles/src/list.c b/apps/plugins/puzzles/src/list.c
deleted file mode 100644
index 28cefca017..0000000000
--- a/apps/plugins/puzzles/src/list.c
+++ /dev/null
@@ -1,17 +0,0 @@
1/*
2 * list.c: List of pointers to puzzle structures, for monolithic
3 * platforms.
4 *
5 * This file depends on the header "generated-games.h", which is
6 * constructed by CMakeLists.txt.
7 */
8
9#include "puzzles.h"
10
11#define GAME(x) &x,
12const game *gamelist[] = {
13#include "generated-games.h"
14};
15#undef GAME
16
17const int gamecount = lenof(gamelist);