From 01dca8b87f3635bd0b8d2309d16fb1070601457c Mon Sep 17 00:00:00 2001 From: Rejean Loyer Date: Fri, 16 Sep 2011 12:20:32 -0400 Subject: [PATCH] libede: fix to FileSystemNode::GetPath for nodes that specify a path --- libede/src/FileSystemBox.ec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libede/src/FileSystemBox.ec b/libede/src/FileSystemBox.ec index 9744ae1..cbf2189 100644 --- a/libede/src/FileSystemBox.ec +++ b/libede/src/FileSystemBox.ec @@ -1881,12 +1881,15 @@ public: } } else + { /*#ifdef __WIN32__ strcpy(outputPath, "/"); #else*/ - strcpy(outputPath, name); + //strcpy(outputPath, name); + strcpy(outputPath, path); + PathCat(outputPath, name); //#endif - + } } bool IsChildOf(FileSystemNode node) -- 1.8.3.1