From 077fa443582bf57151cafea0da80f567ee5b9cb7 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Thu, 30 Jun 2005 16:59:07 +0000 Subject: [PATCH] rollback change svn path=/trunk/; revision=16355 --- reactos/subsys/system/taskmgr/font.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/system/taskmgr/font.c b/reactos/subsys/system/taskmgr/font.c index 1f599161fec..59d119627c5 100644 --- a/reactos/subsys/system/taskmgr/font.c +++ b/reactos/subsys/system/taskmgr/font.c @@ -37,11 +37,11 @@ void Font_DrawText(HDC hDC, LPCTSTR lpszText, int x, int y) if ((lpszText[i] >= '0') && (lpszText[i] <= '9')) { BitBlt(hDC, x + (i * 8), y, 8, 11, hFontDC, (lpszText[i] - '0') * 8, 0, SRCCOPY); } - else if (lpszText[i] == '%') + else if (lpszText[i] == 'K') { BitBlt(hDC, x + (i * 8), y, 8, 11, hFontDC, 80, 0, SRCCOPY); } - else if (lpszText[i] == 'K') + else if (lpszText[i] == '%') { BitBlt(hDC, x + (i * 8), y, 8, 11, hFontDC, 88, 0, SRCCOPY); }