git @ Cat's Eye Technologies linapple / 232de96
Commented out conditional... ghedger authored 10 years ago T. Joseph Carter committed 7 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
568568 // Called when mouse is being used as a joystick && mouse position changes
569569 void JoySetPosition (int xvalue, int xrange, int yvalue, int yrange)
570570 {
571 int nJoyNum = 0; (joyinfo[joytype[0]].device == DEVICE_MOUSE) ? 0 : 1;
571 int nJoyNum = 0; //(joyinfo[joytype[0]].device == DEVICE_MOUSE) ? 0 : 1;
572572 xpos[nJoyNum] = (xvalue * 255) / xrange;
573573 ypos[nJoyNum] = (yvalue * 255) / yrange;
574574 }