1
vote
4answers
494 views
SetCursor reverts after a mouse move
I am using SetCursor to set the system cursor to my own image. The code looks something like this:
// member on some class
HCURSOR _cursor;
// at init time
_cursor = LoadCursorFrom …
1
vote
SetCursor reverts after a mouse move
It seems that I have two options. The first is the one that Mark Ransom suggested here, which is to respond to the windows WM_SETCURSOR message and call SetCursor at that time based on …
3
votes
What is the best free cross-platform OpenGL GUI library for a video game?
We are using CEGUI, but I can't say I'm all that impressed. It's so complex that it is difficult to debug, even for simple things.
If you're willing to pay for a GUI library I've heard good …
