From c863a9d611b8fd734bf59d827e78ef2da3e8a4fa Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Fri, 22 Aug 2003 20:17:08 +0000 Subject: [PATCH] fixed a bug in LoadCursorImage() svn path=/trunk/; revision=5769 --- reactos/lib/user32/windows/bitmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/user32/windows/bitmap.c b/reactos/lib/user32/windows/bitmap.c index e02379e45fc..462678fe0ed 100644 --- a/reactos/lib/user32/windows/bitmap.c +++ b/reactos/lib/user32/windows/bitmap.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: bitmap.c,v 1.13 2003/08/20 14:08:18 weiden Exp $ +/* $Id: bitmap.c,v 1.14 2003/08/22 20:17:08 weiden Exp $ * * PROJECT: ReactOS user32.dll * FILE: lib/user32/windows/input.c @@ -125,7 +125,7 @@ LoadCursorImage(HINSTANCE hinst, LPCWSTR lpszName, UINT fuLoad) h2Resource = FindResourceW(hinst, MAKEINTRESOURCEW(id), - MAKEINTRESOURCEW(RT_ICON)); + MAKEINTRESOURCEW(RT_CURSOR)); hResource = LoadResource(hinst, h2Resource); if (hResource == NULL)