verbosity in inifile

remove dead binding.
This commit is contained in:
Enno Rehling 2006-11-22 22:17:15 +00:00
parent 39d4c22186
commit 96ef8640f3
2 changed files with 1 additions and 7 deletions

View File

@ -144,13 +144,6 @@ get_direction(const char * name)
return NODIRECTION; return NODIRECTION;
} }
int
lua_writereport(faction * f)
{
time_t ltime = time(0);
return write_reports(f, ltime);
}
static void static void
lua_equipunit(unit& u, const char * eqname) lua_equipunit(unit& u, const char * eqname)
{ {

View File

@ -579,6 +579,7 @@ load_inifile(const char * filename)
g_resourcedir = iniparser_getstr(d, "common:res"); g_resourcedir = iniparser_getstr(d, "common:res");
xmlfile = iniparser_getstr(d, "common:xml"); xmlfile = iniparser_getstr(d, "common:xml");
luafile = iniparser_getstr(d, "eressea:run"); luafile = iniparser_getstr(d, "eressea:run");
quiet = iniparser_getint(d, "eressea:verbose", 0)?0:1;
} }
inifile = d; inifile = d;
} }