Merge branch 'master' of https://github.com/reactos/reactos
[reactos.git] / win32ss / user / rtl / text.c
index dba4c57..6456065 100644 (file)
@@ -1263,18 +1263,8 @@ INT WINAPI DrawTextExWorker( HDC hdc,
        if (flags & DT_SINGLELINE)
        {
 #ifdef __REACTOS__
-        if (flags & DT_VCENTER)
-        {
-            if (flags & DT_CALCRECT)
-            {
-                if (rect->bottom - rect->top < size.cy / 2)
-                    y = rect->top + (invert_y ? size.cy : -size.cy) / 2;
-            }
-            else
-            {
-                y = rect->top + (rect->bottom - rect->top + (invert_y ? size.cy : -size.cy)) / 2;
-            }
-        }
+        if (flags & DT_VCENTER) y = rect->top +
+            (rect->bottom - rect->top + (invert_y ? size.cy : -size.cy)) / 2;
         else if (flags & DT_BOTTOM)
             y = rect->bottom + (invert_y ? 0 : -size.cy);
 #else