summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2021-07-17 14:03:49 +0200
committerGitHub <noreply@github.com>2021-07-17 14:03:49 +0200
commit4e0e1370d43f07628e1722a7034ac52d52f9da59 (patch)
treee43d8b82596625ee6f42e071a71402cdb400d713 /deps
parentc7129fa0dd7b9951589599654fe83cdcd2a55d7a (diff)
fix(Deps/G3DLite): char to LPTSTR (#6997)
Diffstat (limited to 'deps')
-rw-r--r--deps/g3dlite/source/debugAssert.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/g3dlite/source/debugAssert.cpp b/deps/g3dlite/source/debugAssert.cpp
index cfccf9a0cc..675cac55f4 100644
--- a/deps/g3dlite/source/debugAssert.cpp
+++ b/deps/g3dlite/source/debugAssert.cpp
@@ -103,7 +103,7 @@ static void createErrorMessage(
if (NULL != formatMsg) {
realLastErr = formatMsg;
} else {
- realLastErr = _T("Last error code does not exist.");
+ realLastErr = LPTSTR(_T("Last error code does not exist."));
}
if (lastErr != 0) {