Browse Source

Timer::RepeatSetter wasn't getting the right value

v0.7.4-release
Ryan 16 years ago
parent
commit
89320036a8
  1. 2
      src/timer.cc

2
src/timer.cc

@ -51,7 +51,7 @@ Timer::RepeatSetter (Local<String> property, Local<Value> value, const AccessorI
assert(timer);
assert(property == REPEAT_SYMBOL);
timer->watcher_.repeat = (double)(property->IntegerValue()) / 1000;
timer->watcher_.repeat = (double)(value->IntegerValue()) / 1000;
}
void

Loading…
Cancel
Save