aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2022-08-12 14:07:54 +0300
committerkartofen <mladenovnasko0@gmail.com>2022-08-12 14:07:54 +0300
commitf0b443c37daa92d36ea752d837855a28b084dd3c (patch)
tree5c35efb32a07373d6c3d6cc523680d68fd24af02 /src/config.h
parent02a5f64db70b61ad41c59c17d70feefaba1f21a5 (diff)
most likely works with more than 63
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/config.h b/src/config.h
index 06525cb..36f43a6 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,11 +1,13 @@
// comment this if you dont want to generate the tiles, but
// want to use the tileset defined in the TILESET_NAME directive
-// #define GENERATE_PPM_TILES
+#define GENERATE_PPM_TILES
#ifdef GENERATE_PPM_TILES
int generated_tile_colors[2][3] = {
- { 211, 211, 211 }, // blank | default 255
- { 30, 144, 155 } // not blank | defalut 0
+ { 0, 32, 63 }, // blank | default 255
+ { 173, 239, 209 } // not blank | defalut 0
+ // { 255, 255, 255 },
+ // { 0, 0, 0 }
};
#endif
@@ -13,7 +15,7 @@
// name of the tileset, localated in files/tilesets directory
// must be defined only when GENERATE_PPM_TILES is not
// if both arent defined, only tiles.dat will be generated
-#define TILESET_NAME "knots"
+// #define TILESET_NAME "knots"
/* The TILES are
@@ -38,7 +40,6 @@ need to put in the tiles_to_load array
// Array for which tiles to include the tiles.dat
int tiles_to_load[] = {
- 2,
- 3,
- 4,
+ 0,
+ 1,
};