Direct Input problem

Started by
0 comments, last by ACAC 20 years, 11 months ago
Ive created an application inwhich a dialog is loaded up as soon as it starts, you enter some values and hit ok then it enters the game. But since im not using exsact mouse coordinates it messes up because im adding the mouse coordinates relative to the previous position. So if they start at 0,0 and the mouse is in the middle of the app, they will become negative values.. How can i fix this ?
Advertisement
You can get the mouse position at the beginning of the program:

POINT start; // POINT.X & POINT.YGetCursorPos( &start );mouse_x = start.X;mouse_y = start.Y;


Like that!

.lick

This topic is closed to new replies.

Advertisement