From c3ae9d06b11abd5a34b846427a7485e0a84b9e15 Mon Sep 17 00:00:00 2001 From: Kelson42 Date: Wed, 14 May 2014 18:43:49 +0200 Subject: [PATCH] + Windows fix --- src/common/pathTools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/pathTools.cpp b/src/common/pathTools.cpp index 2e3f0715e..ee636e994 100644 --- a/src/common/pathTools.cpp +++ b/src/common/pathTools.cpp @@ -67,7 +67,7 @@ string computeRelativePath(const string path, const string absolutePath) { /* On Windows you have a token more because the root is represented by a letter */ if (commonCount == 0) { - relativePath = "../" + relativePath = "../"; } #endif