Ignore:
Timestamp:
Feb 16, 2000, 3:34:41 PM (26 years ago)
Author:
sandervl
Message:

Added new logging feature

File:
1 edited

Legend:

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

    r2469 r2804  
    1 /* $Id: loadres.cpp,v 1.22 2000-01-18 20:10:37 sandervl Exp $ */
     1/* $Id: loadres.cpp,v 1.23 2000-02-16 14:34:21 sandervl Exp $ */
    22
    33/*
     
    2828#include "initterm.h"
    2929#include <win\cursoricon.h>
     30
     31#define DBG_LOCALLOG    DBG_loadres
     32#include "dbglocal.h"
    3033
    3134//******************************************************************************
     
    358361        }
    359362        else {
    360           hbitmap = CreateDIBitmap( hdc, &fix_info->bmiHeader, CBM_INIT,
    361                                       bits, fix_info, DIB_RGB_COLORS );
     363//        if(fix_info->bmiHeader.biBitCount == 1) {
     364//              hbitmap = CreateBitmap(fix_info->bmiHeader.biWidth,
     365//                                       fix_info->bmiHeader.biHeight,
     366//                                       fix_info->bmiHeader.biPlanes,
     367//                                       fix_info->bmiHeader.biBitCount,
     368//                                       (PVOID)bits);
     369//        }
     370//        else {
     371                hbitmap = CreateDIBitmap(hdc, &fix_info->bmiHeader, CBM_INIT,
     372                                         bits, fix_info, DIB_RGB_COLORS );
     373//        }
    362374        }
    363375        ReleaseDC( 0, hdc );
Note: See TracChangeset for help on using the changeset viewer.