aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2022-08-23 16:52:44 +0300
committerkartofen <mladenovnasko0@gmail.com>2022-08-23 16:52:44 +0300
commitaf0cf5646bb703daf5f777f478017b46f137ed99 (patch)
tree21d98fcd3f3fce5b97818413c051874344b66391 /src/config.h
parent976278767230c2e1d9575f804ee2c0ff05541d48 (diff)
remove debug prints
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/config.h b/src/config.h
index 36f43a6..19726d5 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,6 +1,6 @@
// 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] = {
@@ -15,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
@@ -40,6 +40,7 @@ need to put in the tiles_to_load array
// Array for which tiles to include the tiles.dat
int tiles_to_load[] = {
- 0,
- 1,
+ 2,
+ 3,
+ 4,
};