From 6b54dccd23a8bd7a2d235f75d6ded23a04cb5f13 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Wed, 10 Sep 2003 21:06:26 +0000 Subject: [PATCH] Small bug in debug data displayed: NtGdiCreatePrimarySurface(): Fixed line "Display Driver ... loaded", now loads really loaded driver instead of always first on the list. svn path=/trunk/; revision=6040 --- reactos/subsys/win32k/objects/dc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/objects/dc.c b/reactos/subsys/win32k/objects/dc.c index d49e0ca8fbe..06481a7bfa7 100644 --- a/reactos/subsys/win32k/objects/dc.c +++ b/reactos/subsys/win32k/objects/dc.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: dc.c,v 1.78 2003/08/31 07:56:24 gvg Exp $ +/* $Id: dc.c,v 1.79 2003/09/10 21:06:26 fireball Exp $ * * DC.C - Device context functions * @@ -349,7 +349,7 @@ NtGdiCreatePrimarySurface(LPCWSTR Driver, return FALSE; } - DPRINT("Display driver %S loaded\n", DriverName); + DPRINT("Display driver %S loaded\n", CurrentName); DPRINT("Building DDI Functions\n");