Follow up r17153 part1 revert map_athena.conf deletion to keep log history track, transfert it to msg_conf, fix vcc warnings

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17154 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
glighta 2013-02-22 03:12:57 +00:00
parent c0e5e26264
commit 6194931f48
5 changed files with 3 additions and 1418 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4862,7 +4862,7 @@ const char* char_msg_txt(int msg_number){
return _msg_txt(msg_number,CHAR_MAX_MSG,msg_table);
}
void char_do_final_msg(void){
return _do_final_msg(CHAR_MAX_MSG,msg_table);
_do_final_msg(CHAR_MAX_MSG,msg_table);
}
/*======================================================

View File

@ -1908,7 +1908,7 @@ const char* login_msg_txt(int msg_number){
return _msg_txt(msg_number,LOGIN_MAX_MSG,msg_table);
}
void login_do_final_msg(void){
return _do_final_msg(LOGIN_MAX_MSG,msg_table);
_do_final_msg(LOGIN_MAX_MSG,msg_table);
}
/*======================================================

View File

@ -3713,8 +3713,6 @@ void do_shutdown(void)
int do_init(int argc, char *argv[])
{
int i;
#ifdef GCOLLECT
GC_enable_incremental();
#endif
@ -3846,5 +3844,5 @@ const char* map_msg_txt(int msg_number){
return _msg_txt(msg_number,MAX_MSG,msg_table);
}
void map_do_final_msg(void){
return _do_final_msg(MAX_MSG,msg_table);
_do_final_msg(MAX_MSG,msg_table);
}