diff options
author | Richard Linden <none@none> | 2011-09-13 10:58:51 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-09-13 10:58:51 -0700 |
commit | 3f4a063758d1ff795258272065c1f7f72a5d4efd (patch) | |
tree | 08d8228b65006d4daae231fa89f6f294370cc6be | |
parent | aa75136e1a0ae4adec7693fce8620a9b1034cf91 (diff) |
increased fast timer history to 300 to make fast timers more usable
-rw-r--r-- | indra/llcommon/llfasttimer_class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llfasttimer_class.h b/indra/llcommon/llfasttimer_class.h index 827747f0c6..f481e968a6 100644 --- a/indra/llcommon/llfasttimer_class.h +++ b/indra/llcommon/llfasttimer_class.h @@ -66,7 +66,7 @@ public: public: ~NamedTimer(); - enum { HISTORY_NUM = 60 }; + enum { HISTORY_NUM = 300 }; const std::string& getName() const { return mName; } NamedTimer* getParent() const { return mParent; } |