From c29ce9bc5bc98e1fb9f31e583f2580f5880bad78 Mon Sep 17 00:00:00 2001 From: Richard Campbell Date: Sat, 13 Nov 2004 01:14:42 +0000 Subject: [PATCH] - Fixed a typo svn path=/trunk/; revision=11638 --- reactos/lib/user32/misc/desktop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/user32/misc/desktop.c b/reactos/lib/user32/misc/desktop.c index 67b4d26b7bd..a5677d5bfe0 100644 --- a/reactos/lib/user32/misc/desktop.c +++ b/reactos/lib/user32/misc/desktop.c @@ -1,4 +1,4 @@ -/* $Id: desktop.c,v 1.34 2004/08/21 19:50:39 gvg Exp $ +/* $Id: desktop.c,v 1.35 2004/11/13 01:14:42 rcampbell Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS user32.dll @@ -33,7 +33,7 @@ GetSystemMetrics(int nIndex) */ BOOL STDCALL SetDeskWallpaper(LPCSTR filename) { - return SystemParametersInfoA(SPI_SETDESKWALLPAPER,0,(PVOID)filename,1); + return SystemParametersInfoA(SPI_SETDESKWALLPAPER,0,(PVOID)filename,TRUE); } /* * @implemented