summaryrefslogtreecommitdiffstats
path: root/source/slang/compiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/compiler.cpp')
-rw-r--r--source/slang/compiler.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/slang/compiler.cpp b/source/slang/compiler.cpp
index 7a5501a23..4b7fcb554 100644
--- a/source/slang/compiler.cpp
+++ b/source/slang/compiler.cpp
@@ -186,7 +186,10 @@ namespace Slang
for(auto sourceFile : translationUnit->sourceFiles)
{
codeBuilder << "#line 1 \"";
- for(auto c : sourceFile->path)
+
+ const String& path = sourceFile->pathInfo.foundPath;
+
+ for(auto c : path)
{
char buffer[] = { c, 0 };
switch(c)