- set the minimum update frequency to 0.067 (15 per second) because anything less just looks awful

- clamped the update frequency on every load to force it to >= 15
This commit is contained in:
Parnic
2010-11-05 05:18:14 +00:00
parent 94c2099736
commit e7c8c78cb7
2 changed files with 2 additions and 1 deletions

View File

@ -221,6 +221,7 @@ function IceCore.prototype:Enable(userToggle)
if self.settings.updatePeriod == nil then
self.settings.updatePeriod = 0.033
end
self.settings.updatePeriod = IceHUD:Clamp(self.settings.updatePeriod, 0, 0.067)
self:RedirectRemovedModules()