From 66794338cb469fd570f54d68409edbe45ef66df0 Mon Sep 17 00:00:00 2001 From: Thomas Rohloff Date: Sun, 26 Apr 2020 15:06:34 +0200 Subject: [PATCH] Remove useless codes Signed-off-by: Thomas Rohloff --- source/gui/FreeTypeGX.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/source/gui/FreeTypeGX.cpp b/source/gui/FreeTypeGX.cpp index 96c8187..613a2b6 100644 --- a/source/gui/FreeTypeGX.cpp +++ b/source/gui/FreeTypeGX.cpp @@ -78,14 +78,8 @@ wchar_t* FreeTypeGX::charToWideChar(const char* strChar) { if (bt == (size_t)-1) return NULL; - if (bt < --len) { + if (bt < --len) strWChar[bt] = 0; - return strWChar; - } - - wchar_t *tempDest = strWChar; - while ((*tempDest++ = *strChar++)) - ; return strWChar; }