fixes for some compilation warnings

develop
simon 2010-04-28 18:21:52 +02:00
parent 65db80cd50
commit 3e16c75944
3 changed files with 9 additions and 9 deletions

@ -12,7 +12,7 @@ namespace DFHack
constr_bar = 0,
constr_block = 2,
constr_boulder = 4,
constr_logs = 5,
constr_logs = 5
};
#pragma pack(push, 1)
struct t_construction

@ -17,14 +17,14 @@ namespace DFHack
feature_Other,
feature_Adamantine_Tube,
feature_Underworld,
feature_Hell_Temple,
feature_Hell_Temple
};
static char * sa_feature[]=
{
"Other",
"Adamantine Tube",
"Underworld",
"Hell Temple"
(char*)"Other",
(char*)"Adamantine Tube",
(char*)"Underworld",
(char*)"Hell Temple"
};
union planecoord
{

@ -98,7 +98,7 @@ enum CREATURE_COMMAND
CREATURE_INIT = 0, // initialization
CREATURE_FIND_IN_BOX,
CREATURE_AT_INDEX,
NUM_CREATURE_CMDS,
NUM_CREATURE_CMDS
};
DFPP_module Init(void);