hi all
In lite-C the manual states that to globaly modify a parameter you must declare the function with its parameters as arrays:
function do_something(var* number)
{
number[0]+=5*time_step;
}
since Im only using one value. Is there a way to declare a "variable pointer" parameter as a one value variable? To avoid declaring a vector in the function.
Last edited by FcoElizalde; 06/19/09 15:43.