Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Archive/Common/CodecsPath.cpp')
-rwxr-xr-x7zip/Archive/Common/CodecsPath.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/7zip/Archive/Common/CodecsPath.cpp b/7zip/Archive/Common/CodecsPath.cpp
index d2d27ed3..7ee89875 100755
--- a/7zip/Archive/Common/CodecsPath.cpp
+++ b/7zip/Archive/Common/CodecsPath.cpp
@@ -15,7 +15,7 @@ static CSysString GetLibraryPath()
static CSysString GetLibraryFolderPrefix()
{
CSysString path = GetLibraryPath();
- int pos = path.ReverseFind(TEXT('\\'));
+ int pos = path.ReverseFind(TEXT(CHAR_PATH_SEPARATOR));
return path.Left(pos + 1);
}
@@ -24,11 +24,11 @@ CSysString GetBaseFolderPrefix()
CSysString libPrefix = GetLibraryFolderPrefix();
CSysString temp = libPrefix;
temp.Delete(temp.Length() - 1);
- int pos = temp.ReverseFind(TEXT('\\'));
+ int pos = temp.ReverseFind(TEXT(CHAR_PATH_SEPARATOR));
return temp.Left(pos + 1);
}
CSysString GetCodecsFolderPrefix()
{
- return GetBaseFolderPrefix() + TEXT("Codecs\\");
+ return GetBaseFolderPrefix() + (CSysString)(TEXT("Codecs")) + (CSysString)(TEXT(STRING_PATH_SEPARATOR));
}