From 008e7f19c1dc93f04d674f47d20ee1dad02bbc43 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Sun, 5 Oct 2008 12:23:46 +0000 Subject: [PATCH] - Move DC_UpdateXforms out of the switch in SetMapMode. It does not effect anything. svn path=/trunk/; revision=36655 --- reactos/subsystems/win32/win32k/objects/coord.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/subsystems/win32/win32k/objects/coord.c b/reactos/subsystems/win32/win32k/objects/coord.c index 1c0d53f43eb..fc7595aa88a 100644 --- a/reactos/subsystems/win32/win32k/objects/coord.c +++ b/reactos/subsystems/win32/win32k/objects/coord.c @@ -715,9 +715,8 @@ IntGdiSetMapMode(PDC dc, default: Dc_Attr->iMapMode = PrevMapMode; PrevMapMode = 0; - - DC_UpdateXforms(dc); } + DC_UpdateXforms(dc); return PrevMapMode; }