mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Compilation
This commit is contained in:
parent
ea2caaeb55
commit
e084c2014a
1 changed files with 3 additions and 2 deletions
|
@ -21,6 +21,7 @@
|
||||||
|
|
||||||
#include "nel/misc/variable.h"
|
#include "nel/misc/variable.h"
|
||||||
#include "nel/misc/path.h"
|
#include "nel/misc/path.h"
|
||||||
|
#include "nel/misc/common.h"
|
||||||
|
|
||||||
#include "game_share/persistent_data.h"
|
#include "game_share/persistent_data.h"
|
||||||
|
|
||||||
|
@ -52,7 +53,7 @@ CCharacterScanJob::CCharacterScanJob()
|
||||||
|
|
||||||
// open the output file for the character table
|
// open the output file for the character table
|
||||||
std::string filename= "char_tbl.csv";
|
std::string filename= "char_tbl.csv";
|
||||||
_CharTblFile = nlfopen(filename, "wb");
|
_CharTblFile = NLMISC::nlfopen(filename, "wb");
|
||||||
if (_CharTblFile==NULL)
|
if (_CharTblFile==NULL)
|
||||||
{
|
{
|
||||||
nlwarning("Failed to open output file: %s",filename.c_str());
|
nlwarning("Failed to open output file: %s",filename.c_str());
|
||||||
|
@ -73,7 +74,7 @@ CCharacterScanJob::~CCharacterScanJob()
|
||||||
{
|
{
|
||||||
// create the output file name and open the file for writing
|
// create the output file name and open the file for writing
|
||||||
std::string filename="char_stats_"+(*it).first+".csv";
|
std::string filename="char_stats_"+(*it).first+".csv";
|
||||||
FILE* f = nlfopen(filename, "wb");
|
FILE* f = NLMISC::nlfopen(filename, "wb");
|
||||||
if (f==NULL)
|
if (f==NULL)
|
||||||
{
|
{
|
||||||
nlwarning("Failed to open output file: %s",filename.c_str());
|
nlwarning("Failed to open output file: %s",filename.c_str());
|
||||||
|
|
Loading…
Reference in a new issue