|
@@ -101,7 +101,7 @@ class ctl_item
|
|
} elseif ($this->mMaxSpeed == 0) {
|
|
} elseif ($this->mMaxSpeed == 0) {
|
|
return true;
|
|
return true;
|
|
} else {
|
|
} else {
|
|
- return $this->cur_speed() >= $this->mMaxSpeed;
|
|
|
|
|
|
+ return $this->lazy_speed() >= $this->mMaxSpeed;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -112,7 +112,7 @@ class ctl_item
|
|
|
|
|
|
public function lazy_speed()
|
|
public function lazy_speed()
|
|
{
|
|
{
|
|
- return $this->cur_speed();
|
|
|
|
|
|
+ return $this->mLazySpeed;
|
|
}
|
|
}
|
|
|
|
|
|
public function name()
|
|
public function name()
|