Ignore:
Timestamp:
Jan 5, 2003, 5:34:58 PM (23 years ago)
Author:
sandervl
Message:

Added workaround for handling black & white cursors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/oslibres.cpp

    r9523 r9624  
    1 /* $Id: oslibres.cpp,v 1.33 2002-12-18 12:28:05 sandervl Exp $ */
     1/* $Id: oslibres.cpp,v 1.34 2003-01-05 16:34:58 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    415415        rgb                         = (RGBQUAD *)(pXorBits);
    416416
     417#if 0
     418        if(pXorBmp->bmBitsPixel == 1) {
     419            os2rgb->bRed = os2rgb->bBlue = os2rgb->bGreen = 0;
     420            os2rgb++;
     421            os2rgb->bRed = os2rgb->bBlue = os2rgb->bGreen = 0xff;
     422            os2rgb++;
     423        }
     424        else
     425#endif
    417426        if(pXorBmp->bmBitsPixel <= 8) {
    418427            for(i=0;i<(1<<pXorBmp->bmBitsPixel);i++) {
Note: See TracChangeset for help on using the changeset viewer.