Ignore:
Timestamp:
Sep 25, 1999, 4:18:12 PM (26 years ago)
Author:
sandervl
Message:

Cursor fixes + minor change to RedrawWindow

File:
1 edited

Legend:

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

    r1039 r1042  
    1 /* $Id: user32.cpp,v 1.30 1999-09-25 09:27:08 dengert Exp $ */
     1/* $Id: user32.cpp,v 1.31 1999-09-25 14:18:11 sandervl Exp $ */
    22
    33/*
     
    677677HCURSOR WIN32API SetCursor( HCURSOR hcur)
    678678{
    679 #ifdef DEBUG
    680     WriteLog("USER32: SetCursor %x\n", hcur);
    681 #endif
    682     return O32_SetCursor(hcur);
     679 HCURSOR rc;
     680
     681    rc = O32_SetCursor(hcur);
     682    dprintf(("USER32: SetCursor %x (prev %x (%x))\n", hcur, rc, O32_GetCursor()));
     683    return rc;
    683684}
    684685//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.