Fixed: Save filenames in .bank with / instead of system separator

This commit is contained in:
kervala 2016-01-13 19:43:46 +01:00
parent 3a009045aa
commit b8d7b685f5

View file

@ -20,6 +20,7 @@
#include "nel/misc/debug.h" #include "nel/misc/debug.h"
#include "nel/misc/stream.h" #include "nel/misc/stream.h"
#include "nel/misc/rgba.h" #include "nel/misc/rgba.h"
#include "nel/misc/path.h"
#include <vector> #include <vector>
#include <set> #include <set>
#include <string> #include <string>
@ -82,8 +83,8 @@ public:
// not free // not free
_Flags&=~NL3D_CTILE_FREE_FLAG; _Flags&=~NL3D_CTILE_FREE_FLAG;
// set filename // set filename, replacing \\ by / if needed
_BitmapName[bitmapType]=name; _BitmapName[bitmapType] = NLMISC::CPath::standardizePath(name, false);
} }
std::string getFileName (TBitmap bitmapType) const std::string getFileName (TBitmap bitmapType) const