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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-07-27 23:31:24 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-07-27 23:31:24 +0400
commitfcba277a836fc9bbc5543525df3d8564367c7443 (patch)
treeaa91c758f8dbcc2db1ced3435ccf0f94f4d46278 /source/blender/freestyle/intern/system
parent52f639277b527b97eb29f3f91e0f5899fd30d8a2 (diff)
Changed DIR_SEP for WIN32 from "\\\\" (double backslashes) to
"\\" (single backslash).
Diffstat (limited to 'source/blender/freestyle/intern/system')
-rwxr-xr-xsource/blender/freestyle/intern/system/FreestyleConfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/system/FreestyleConfig.h b/source/blender/freestyle/intern/system/FreestyleConfig.h
index c483e2813ba..014196eb02c 100755
--- a/source/blender/freestyle/intern/system/FreestyleConfig.h
+++ b/source/blender/freestyle/intern/system/FreestyleConfig.h
@@ -44,7 +44,7 @@ namespace Config {
// Directory separators
# ifdef WIN32
- static const string DIR_SEP("\\\\");
+ static const string DIR_SEP("\\");
static const string PATH_SEP(";");
# else
static const string DIR_SEP("/");