From be806d7942e090f034c7cb49c5ac99e52ee4b5e5 Mon Sep 17 00:00:00 2001 From: Frank Zago Date: Tue, 9 Jun 2009 05:02:22 +0000 Subject: [PATCH] Use right path separator. --- client/CMT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/CMT.cpp b/client/CMT.cpp index ef1bc56ea..a2bde2146 100644 --- a/client/CMT.cpp +++ b/client/CMT.cpp @@ -328,7 +328,7 @@ void processCommand(const std::string &message, CClient *&client) pom = txth->entries[i].nameStr; if(boost::algorithm::find_last(pom,pattern)) { - txth->extractFile(std::string("Extracted_txts\\")+pom,pom); + txth->extractFile(std::string("Extracted_txts" PATHSEPARATOR)+pom,pom); } if(i%8) continue; int p2 = ((float)i/(float)txth->entries.size())*(float)100;