mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2025-11-29 17:38:24 +08:00
fix(Deps/G3DLite): char to LPTSTR (#6997)
This commit is contained in:
2
deps/g3dlite/source/debugAssert.cpp
vendored
2
deps/g3dlite/source/debugAssert.cpp
vendored
@@ -103,7 +103,7 @@ static void createErrorMessage(
|
|||||||
if (NULL != formatMsg) {
|
if (NULL != formatMsg) {
|
||||||
realLastErr = formatMsg;
|
realLastErr = formatMsg;
|
||||||
} else {
|
} else {
|
||||||
realLastErr = _T("Last error code does not exist.");
|
realLastErr = LPTSTR(_T("Last error code does not exist."));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lastErr != 0) {
|
if (lastErr != 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user