changeset 339:4482dd0bb87d

Minor fix.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 10 Apr 2003 12:37:28 +0000
parents 44e2bdacd8f3
children eff674cb4935
files win/dw.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/win/dw.c	Thu Apr 10 12:36:08 2003 +0000
+++ b/win/dw.c	Thu Apr 10 12:37:28 2003 +0000
@@ -3521,7 +3521,7 @@
  */
 void API dw_window_pointer(HWND handle, int pointertype)
 {
-	SetCursor(pointer < 65536 ? LoadCursor(NULL, MAKEINTRESOURCE(pointertype)) (HCURSOR)pointertype);
+	SetCursor(pointertype < 65536 ? LoadCursor(NULL, MAKEINTRESOURCE(pointertype)) : (HCURSOR)pointertype);
 }
 
 /*