|
Re: [FTC]: Top Hat coding problem
Your problem is just an syntax error.
The sign "=" is an assignment operator where the sign "==" is the comparison operator. So you would have to do...
if(joystick.joy2_TopHat == 0)
{
code goes here
}
__________________
1261: 2007-2012
1648: 2013-2014
5283: 2015
|