adjustClock method

void adjustClock(
  1. int delta
)

Adjust the internal clock with the parameter delta - the difference in milliseconds between the actual clock and the current system clock.

Implementation

void adjustClock(int delta) {
  _timeDelta = delta;
}