summaryrefslogtreecommitdiffstats
path: root/source/slang/slang.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang.cpp')
-rw-r--r--source/slang/slang.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang.cpp b/source/slang/slang.cpp
index 355da23b9..9d018d47f 100644
--- a/source/slang/slang.cpp
+++ b/source/slang/slang.cpp
@@ -6102,7 +6102,7 @@ char const* EndToEndCompileRequest::getDependencyFilePath(int index)
auto frontEndReq = getFrontEndReq();
auto program = frontEndReq->getGlobalAndEntryPointsComponentType();
SourceFile* sourceFile = program->getFileDependencies()[index];
- return sourceFile->getPathInfo().hasFileFoundPath() ? sourceFile->getPathInfo().foundPath.getBuffer() : "unknown";
+ return sourceFile->getPathInfo().hasFoundPath() ? sourceFile->getPathInfo().foundPath.getBuffer() : "unknown";
}
int EndToEndCompileRequest::getTranslationUnitCount()