From 467ce2a719bcfb2778cad77a9eb417fc3b3c9141 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Wed, 14 Oct 2015 22:09:11 +0200 Subject: [PATCH] visual studio compilation fix --- src/kernel/terrain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel/terrain.h b/src/kernel/terrain.h index 945d07794..931a74861 100644 --- a/src/kernel/terrain.h +++ b/src/kernel/terrain.h @@ -64,7 +64,7 @@ extern "C" { short max_road; /* this many stones make a full road */ short distribution; /* multiplier used for seeding */ struct terrain_production *production; - const struct item_type **herbs; /* zero-terminated array of herbs */ + struct item_type **herbs; /* zero-terminated array of herbs */ const char *(*name) (const struct region * r); struct terrain_type *next; } terrain_type;