From 6d7c7e67b2001716340698b44d3eb95de3c4cf24 Mon Sep 17 00:00:00 2001 From: tron Date: Mon, 3 Oct 2005 21:20:01 +0000 Subject: (svn r3010) Get rid of quite some dubious casts, either by using GB(), proper types or just removing them --- viewport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'viewport.c') diff --git a/viewport.c b/viewport.c index 66b93a852..c3cc10834 100644 --- a/viewport.c +++ b/viewport.c @@ -2229,7 +2229,7 @@ void SetObjectToPlace(CursorID icon, byte mode, WindowClass window_class, Window VpStartPreSizing(); if ( (int)icon < 0) - SetAnimatedMouseCursor(_animcursors[~(int32)icon]); + SetAnimatedMouseCursor(_animcursors[~icon]); else SetMouseCursor(icon); } -- cgit v1.2.3-54-g00ecf