Moved common, config and mapcache to C++ (#3200)

Dropped BETA_THREAD_TEST and everything around it
Dropped mt19937
Replaced msinttypes with cinttypes
Removed IRC link and updated README name
This commit is contained in:
Lemongrass3110
2018-06-14 21:51:58 +02:00
committed by GitHub
parent fc951469e7
commit 801d3ed942
240 changed files with 1163 additions and 8613 deletions

View File

@@ -10,18 +10,18 @@
#include <stdlib.h>
#include <string.h>
#include "../common/cbasetypes.h"
#include "../common/core.h"
#include "../common/db.h"
#include "../common/malloc.h"
#include "../common/mapindex.h"
#include "../common/mmo.h"
#include "../common/random.h"
#include "../common/showmsg.h"
#include "../common/socket.h"
#include "../common/strlib.h"
#include "../common/timer.h"
#include "../common/cli.h"
#include "../common/cbasetypes.hpp"
#include "../common/core.hpp"
#include "../common/db.hpp"
#include "../common/malloc.hpp"
#include "../common/mapindex.hpp"
#include "../common/mmo.hpp"
#include "../common/random.hpp"
#include "../common/showmsg.hpp"
#include "../common/socket.hpp"
#include "../common/strlib.hpp"
#include "../common/timer.hpp"
#include "../common/cli.hpp"
#include "int_guild.hpp"
#include "int_homun.hpp"
@@ -2737,7 +2737,7 @@ void char_set_defaults(){
charserv_config.log_inter = 1; // loggin inter or not [devil]
charserv_config.char_check_db =1;
// See const.h to change the default values
// See const.hpp to change the default values
charserv_config.start_point[0].map = mapindex_name2id(MAP_DEFAULT_NAME);
charserv_config.start_point[0].x = MAP_DEFAULT_X;
charserv_config.start_point[0].y = MAP_DEFAULT_Y;