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