git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29746
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
wxUint16 bits[16];
wxUint16 mask[16];
{
wxUint16 bits[16];
wxUint16 mask[16];
}ClassicCursor;
const short kwxCursorBullseye = 0 ;
}ClassicCursor;
const short kwxCursorBullseye = 0 ;
//do the rest of those bits and alphas :)
for (int shift = 0; shift < 32; ++shift)
{
//do the rest of those bits and alphas :)
for (int shift = 0; shift < 32; ++shift)
{
- data[i] |= (!!(pCursor->bits[i] & (1 << (shift >> 1) ))) << shift;
- data[i] |= (!(pCursor->mask[i] & (1 << (shift >> 1) ))) << ++shift;
+ data[i] |= ( !!( (pCursor->mask[i] & (1 << (shift >> 1) )) ) ) << shift;
+ data[i] |= ( !( (pCursor->bits[i] & (1 << (shift >> 1) )) ) ) << ++shift;
//create the new cursor
NSCursor* theCursor = [[NSCursor alloc] initWithImage:theImage
//create the new cursor
NSCursor* theCursor = [[NSCursor alloc] initWithImage:theImage
- hotSpot:NSMakePoint(pCursor->hotspot[0], pCursor->hotspot[1])
+ hotSpot:NSMakePoint(pCursor->hotspot[1], pCursor->hotspot[0])
];
//do the usual cleanups
];
//do the usual cleanups