Author: fireball Date: Fri Jul 2 21:34:00 2010 New Revision: 47925
URL: http://svn.reactos.org/svn/reactos?rev=47925&view=rev Log: - Remove off-by-one fix from 47923, problems were caused by other local changes. Text rendering is back to normal.
Modified: branches/arwinss/reactos/subsystems/win32/win32k/gre/font.c
Modified: branches/arwinss/reactos/subsystems/win32/win32k/gre/font.c URL: http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/subsystems/win32... ============================================================================== --- branches/arwinss/reactos/subsystems/win32/win32k/gre/font.c [iso-8859-1] (original) +++ branches/arwinss/reactos/subsystems/win32/win32k/gre/font.c [iso-8859-1] Fri Jul 2 21:34:00 2010 @@ -63,7 +63,7 @@ &pTextBrush->BrushObj, xspan, y, - xspan + lenspan - 1, + xspan + lenspan, y, &rcBounds, 0); @@ -168,7 +168,7 @@ &pTextBrush->BrushObj, xspan, y, - xspan + lenspan - 1, + xspan + lenspan, y, &rcBounds, 0);