From 4e0e1370d43f07628e1722a7034ac52d52f9da59 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sat, 17 Jul 2021 14:03:49 +0200 Subject: [PATCH] fix(Deps/G3DLite): char to LPTSTR (#6997) --- deps/g3dlite/source/debugAssert.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/g3dlite/source/debugAssert.cpp b/deps/g3dlite/source/debugAssert.cpp index cfccf9a0c..675cac55f 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) {