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

@@ -6,12 +6,12 @@
#include <stdlib.h>
#include <string.h>
#include "../common/socket.h"
#include "../common/timer.h"
#include "../common/showmsg.h"
#include "../common/sql.h"
#include "../common/utils.h"
#include "../common/strlib.h"
#include "../common/socket.hpp"
#include "../common/timer.hpp"
#include "../common/showmsg.hpp"
#include "../common/sql.hpp"
#include "../common/utils.hpp"
#include "../common/strlib.hpp"
#include "inter.hpp"
#include "int_guild.hpp"
@@ -349,7 +349,7 @@ int chlogif_parse_reqaccdata(int fd, struct char_session_data* sd){
sd->group_id = RFIFOB(fd,50);
sd->char_slots = RFIFOB(fd,51);
if( sd->char_slots > MAX_CHARS ) {
ShowError("Account '%d' `character_slots` column is higher than supported MAX_CHARS (%d), update MAX_CHARS in mmo.h! capping to MAX_CHARS...\n",sd->account_id,sd->char_slots);
ShowError("Account '%d' `character_slots` column is higher than supported MAX_CHARS (%d), update MAX_CHARS in mmo.hpp! capping to MAX_CHARS...\n",sd->account_id,sd->char_slots);
sd->char_slots = MAX_CHARS;/* cap to maximum */
} else if ( !sd->char_slots )/* no value aka 0 in sql */
sd->char_slots = MIN_CHARS;/* cap to minimum */