diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2021-07-17 14:03:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 14:03:49 +0200 |
commit | 4e0e1370d43f07628e1722a7034ac52d52f9da59 (patch) | |
tree | e43d8b82596625ee6f42e071a71402cdb400d713 | |
parent | c7129fa0dd7b9951589599654fe83cdcd2a55d7a (diff) |
fix(Deps/G3DLite): char to LPTSTR (#6997)
-rw-r--r-- | deps/g3dlite/source/debugAssert.cpp | 2 |
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) { |