From b3455b0192d9e50c2d6258e400555c30fd3f6fea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Mon, 28 Mar 2011 11:22:21 +0200 Subject: [PATCH] MSVC is a pile of fail that can't even align variables in a struct. --- library/include/dfhack/modules/Constructions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/include/dfhack/modules/Constructions.h b/library/include/dfhack/modules/Constructions.h index deb30ee9b..a6b07e79d 100644 --- a/library/include/dfhack/modules/Constructions.h +++ b/library/include/dfhack/modules/Constructions.h @@ -35,7 +35,7 @@ namespace DFHack uint16_t y; /*!< Y coordinate */ // 4 uint16_t z; /*!< Z coordinate */ - e_construction_base form : 16; /*!< type of item the construction is made of */ + uint16_t form; /*!< type of item the construction is made of */ // 8 uint16_t unk_8; // = -1 in many cases uint16_t mat_type;