반응형
SetCursor();
DrawBitMap(hdc, (x/50)*50, (y/50)*50, whiteBitmap);
buttonDown = false;
turn = true;
SetCursor()다음에 DrawBitMap()을 하면 이상하게 SetCursor()함수가 발동이 안됨...
해결:
그래서 SetCursor()을 맨 아래로 내리니까 원하는 대로 돌아감
반응형
SetCursor();
DrawBitMap(hdc, (x/50)*50, (y/50)*50, whiteBitmap);
buttonDown = false;
turn = true;
SetCursor()다음에 DrawBitMap()을 하면 이상하게 SetCursor()함수가 발동이 안됨...
해결:
그래서 SetCursor()을 맨 아래로 내리니까 원하는 대로 돌아감