plz. everyone give advice now.
void calibrateInput ( int i ) { doJob1 ( i ); doJump ( i ); doPeter ( &i ); doMary ( &i ); }
LOL... sorry, I've lost my crystal ball.
The only thing I would suggest is, that the value of 'i' gets lost after each function call, so each function gets the same value of 'i'.
If this is expected - ok. If not, 'return' a value.
i = func(i);
BR, /th.
... except for peter & mary :-)