OK i have a game when person loses ill set a different cursor. i used the setcursro with loadcusor and WM_SETCURSOR. the problem is that my default cursor which i hae set it where i register my window, it changes to hour glass until the person loses than it changes to the cursor i have set it to. i found that when i use the WM_SETCURSOR it changes the default cusor to hour glass until i set it to a different cursor when person loses. im using win32
any idea?
OK i have a game when person loses ill set a different cursor. i
Share
Generally if you’re going to change cursors much, you want to do something like:
First we initialize the cursors we’ll use:
When we want to change the cursor we just pick the one we want:
And our WM_SETCURSOR handler looks something like this: