[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [20959] branches/blender2.5/blender/source /blender/windowmanager/intern/wm_cursors.c: Fix mask in arrow cursor and improve swap one.

gsr b3d gsr.b3d at infernal-iceberg.com
Wed Jun 17 21:46:39 CEST 2009


Revision: 20959
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=20959
Author:   gsrb3d
Date:     2009-06-17 21:46:39 +0200 (Wed, 17 Jun 2009)

Log Message:
-----------
Fix mask in arrow cursor and improve swap one.

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/windowmanager/intern/wm_cursors.c

Modified: branches/blender2.5/blender/source/blender/windowmanager/intern/wm_cursors.c
===================================================================
--- branches/blender2.5/blender/source/blender/windowmanager/intern/wm_cursors.c	2009-06-17 14:06:55 UTC (rev 20958)
+++ branches/blender2.5/blender/source/blender/windowmanager/intern/wm_cursors.c	2009-06-17 19:46:39 UTC (rev 20959)
@@ -316,7 +316,7 @@
 
 	static char ew_smsk[]={
 		0x00,  0x00,  0x00,  0x00,  0x10,  0x08,  0x38,  0x1c,
-		0x3c,  0x3c,  0xfe,  0x7f,  0xff,  0xff,  0x3f,  0xfc,
+		0x3c,  0x3c,  0xfe,  0x7f,  0xff,  0xff,  0xff,  0xff,
 		0xff,  0xff,  0xfe,  0x7f,  0x3c,  0x3c,  0x38,  0x1c,
 		0x10,  0x08,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,
 	};
@@ -943,17 +943,17 @@
 /********************** Swap Area Cursor ***********************/
 BEGIN_CURSOR_BLOCK
 static char swap_sbm[]={
-        0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,
-        0x00,  0x00,  0x00,  0x00,  0xff,  0x07,  0xff,  0x07,
-        0xff,  0x07,  0xff,  0x07,  0xff,  0x07,  0xff,  0x07,
-        0xff,  0x07,  0xff,  0x07,  0xff,  0x07,  0xff,  0x07,
+	0xc0,  0xff,  0x40,  0x80,  0x40,  0x80,  0x40,  0x9c,
+	0x40,  0x98,  0x40,  0x94,  0x00,  0x82,  0xfe,  0x80,
+	0x7e,  0xfd,  0xbe,  0x01,  0xda,  0x01,  0xe2,  0x01,
+	0xe2,  0x01,  0xc2,  0x01,  0xfe,  0x01,  0x00,  0x00,
 };
 
 static char swap_smsk[]={
-        0xc0,  0xff,  0xc0,  0xff,  0xc0,  0xff,  0xc0,  0xff,
-        0xc0,  0xff,  0xc0,  0xff,  0xff,  0xff,  0xff,  0xff,
-        0xff,  0xff,  0xff,  0xff,  0xff,  0x07,  0xff,  0x07,
-        0xff,  0x07,  0xff,  0x07,  0xff,  0x07,  0xff,  0x07,
+	0xc0,  0xff,  0xc0,  0xff,  0xc0,  0xff,  0xc0,  0xff,
+	0xc0,  0xff,  0xc0,  0xff,  0xff,  0xff,  0xff,  0xff,
+	0xff,  0xff,  0xff,  0x03,  0xff,  0x03,  0xff,  0x03,
+	0xff,  0x03,  0xff,  0x03,  0xff,  0x03,  0xff,  0x03,
 };
 
 static BCursor SwapCursor = {





More information about the Bf-blender-cvs mailing list