Still trying to build it on Linux.
Found function that brings many questions:
int mul3( int x )
{
return x + x;//x+x+x;
};
Why call it and not just write 2*x in code inline? Or maybe 3*x, based on name and comment? Does it somehow change game behaviour?
Still trying to build it on Linux.
Found function that brings many questions:
Why call it and not just write
2*xin code inline? Or maybe 3*x, based on name and comment? Does it somehow change game behaviour?