From 323a3160f7d4ad69e2472e7f94f0b1de0e39a98f Mon Sep 17 00:00:00 2001 From: Darkvater Date: Mon, 21 Aug 2006 13:04:13 +0000 Subject: [PATCH] (svn r6035) -Revert r5900 which supposedly fixed an invalid warning caused by buggy MS software --- viewport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viewport.c b/viewport.c index 8a8fdfcb64..ed22304ce0 100644 --- a/viewport.c +++ b/viewport.c @@ -2227,7 +2227,7 @@ void SetObjectToPlace(CursorID icon, byte mode, WindowClass window_class, Window VpStartPreSizing(); if ( (int)icon < 0) - SetAnimatedMouseCursor(_animcursors[~((int)icon)]); + SetAnimatedMouseCursor(_animcursors[~icon]); else SetMouseCursor(icon); }