summaryrefslogtreecommitdiffstats
path: root/src/angle
diff options
context:
space:
mode:
authorAndrew Knight <andrew.knight@digia.com>2014-04-01 12:17:14 +0300
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-03 08:54:48 +0200
commit4dd9a020017b0663b5b51883809721351c3e1f89 (patch)
treec6f2ca183fc09f0adc37111869bc3c8e0f08294a /src/angle
parent0dbd8c0be75c21acf96016ec1c43e26bc0cab036 (diff)
d3dcompiler_qt: Fix default precompiled path
The trailing slash was missing, which caused the resulting path to be wrong. Change-Id: Iaa9dee15e744307c2d438181964b71c412fd9709 Reviewed-by: Oliver Wolff <oliver.wolff@digia.com>
Diffstat (limited to 'src/angle')
-rw-r--r--src/angle/src/d3dcompiler/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/angle/src/d3dcompiler/main.cpp b/src/angle/src/d3dcompiler/main.cpp
index 63ee1cf976..7647319396 100644
--- a/src/angle/src/d3dcompiler/main.cpp
+++ b/src/angle/src/d3dcompiler/main.cpp
@@ -207,7 +207,7 @@ HRESULT WINAPI D3DCompile(
if (qEnvironmentVariableIsSet("QT_D3DCOMPILER_BINARY_DIR"))
precompiledPath = QString::fromLocal8Bit(qgetenv("QT_D3DCOMPILER_BINARY_DIR"));
else
- precompiledPath = QStringLiteral(":/qt.d3dcompiler"); // Default QRC path
+ precompiledPath = QStringLiteral(":/qt.d3dcompiler/"); // Default QRC path
if (QDir(precompiledPath).exists())
binaryPaths.append(precompiledPath);