merge conflict nightmare fix.

This commit is contained in:
Enno Rehling 2018-02-25 20:49:33 +01:00
parent 432a8d432d
commit db83140753
5 changed files with 3 additions and 9 deletions

View file

@ -49,8 +49,6 @@ void game_done(void)
free_gamedata(); free_gamedata();
creport_cleanup(); creport_cleanup();
report_cleanup(); report_cleanup();
#endif
#endif
calendar_cleanup(); calendar_cleanup();
free_functions(); free_functions();
free_config(); free_config();

View file

@ -163,9 +163,9 @@ int give_quota(const unit * src, const unit * dst, const item_type * type,
} }
if (dst && src && src->faction != dst->faction) { if (dst && src && src->faction != dst->faction) {
static int config; static int config;
static double divisor = 1.0; static int divisor = 1;
if (config_changed(&config)) { if (config_changed(&config)) {
divisor = config_get_flt("rules.items.give_divisor", divisor); divisor = config_get_int("rules.items.give_divisor", divisor);
} }
assert(divisor <= 0 || divisor >= 1); assert(divisor <= 0 || divisor >= 1);
if (divisor >= 1) { if (divisor >= 1) {

View file

@ -252,9 +252,6 @@ static int
lua_use_item(unit *u, const item_type *itype, const char * fname, int amount, struct order *ord) lua_use_item(unit *u, const item_type *itype, const char * fname, int amount, struct order *ord)
{ {
lua_State *L = (lua_State *)global.vm_state; lua_State *L = (lua_State *)global.vm_state;
int len, result = 0;
char fname[64];
int (*callout)(unit *, const item_type *, int, struct order *);
lua_getglobal(L, fname); lua_getglobal(L, fname);
if (lua_isfunction(L, -1)) { if (lua_isfunction(L, -1)) {

View file

@ -242,7 +242,6 @@ void b_read(connection * b, gamedata * data)
default: default:
assert(!"invalid variant type in connection"); assert(!"invalid variant type in connection");
} }
assert(result >= 0 || !"EOF encountered?");
} }
void b_write(const connection * b, storage * store) void b_write(const connection * b, storage * store)

View file

@ -103,7 +103,7 @@ const char *itoa36_r(int i, char *result, size_t len)
{ {
return itoab_r(i, 36, result, len); return itoab_r(i, 36, result, len);
} }
const char *itoab(int i, int base) const char *itoab(int i, int base)
{ {
static char sstr[80]; static char sstr[80];