示例#1
0
 /**
  * Calls check_advance(fixed, fixed) with dt
  * as the default value for dt
  * @param now Current time
  * @see check_advance(fixed, fixed)
  */
 bool check_advance(const fixed now) {
   return check_advance(now, dt);
 }
示例#2
0
 /**
  * Calls check_advance(double, double) with dt
  * as the default value for dt
  * @param now Current time
  * @see check_advance(double, double)
  */
 bool check_advance(const double now) {
   return check_advance(now, dt);
 }