From fcba277a836fc9bbc5543525df3d8564367c7443 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Mon, 27 Jul 2009 19:31:24 +0000 Subject: [PATCH] Changed DIR_SEP for WIN32 from "\\\\" (double backslashes) to "\\" (single backslash). --- source/blender/freestyle/intern/system/FreestyleConfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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("/");