From f065b7f7479aa2da1691a8290bfd0e9fd2d67c71 Mon Sep 17 00:00:00 2001 From: Nimetu Date: Thu, 25 Apr 2019 08:38:23 +0300 Subject: [PATCH] Fixed: Opening local file with @ char in filename --HG-- branch : develop --- code/nel/src/misc/file.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/nel/src/misc/file.cpp b/code/nel/src/misc/file.cpp index 414a10e5a..7eae0f6a5 100644 --- a/code/nel/src/misc/file.cpp +++ b/code/nel/src/misc/file.cpp @@ -237,7 +237,9 @@ bool CIFile::open(const std::string &path, bool text) } } } - else + + // not in bnp, but may have '@' in the name + if (_F == NULL) { _IsInBigFile = false; _IsInXMLPackFile = false;