Ignore:
Timestamp:
May 2, 2000, 10:49:58 PM (25 years ago)
Author:
sandervl
Message:

added extra logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/font.cpp

    r2802 r3481  
    1 /* $Id: font.cpp,v 1.9 2000-02-16 14:18:09 sandervl Exp $ */
     1/* $Id: font.cpp,v 1.10 2000-05-02 20:49:58 sandervl Exp $ */
    22
    33/*
     
    225225  iFontRename(lplf->lfFaceName, afont.lfFaceName);
    226226
    227   dprintf(("lpszFace = %s -> %s\n", lplf->lfFaceName, afont.lfFaceName));
     227  dprintf(("lpszFace = (%x) %s -> %s\n", lplf->lfFaceName, lplf->lfFaceName, afont.lfFaceName));
    228228
    229229  dprintf(("GDI32: CreateFontIndirectA\n"));
     
    257257  memcpy(&afont, lplf, sizeof(LOGFONTA));
    258258  memset(afont.lfFaceName, 0, LF_FACESIZE);
     259  dprintf(("lpszFace = (%x)", lplf->lfFaceName));
     260
    259261  UnicodeToAsciiN((WCHAR *)lplf->lfFaceName, afont.lfFaceName, LF_FACESIZE-1);
    260262  hfont = CreateFontIndirectA(&afont);
Note: See TracChangeset for help on using the changeset viewer.