diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-08-07 16:12:23 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-08-07 16:12:23 -0400 |
commit | 3102dc0db472acac7c4007e7423e405a889d665a (patch) | |
tree | c2e405b2cf2c6ad2d3f6117bb66585b852a00ce3 /indra/llcommon | |
parent | 08def53d8bf07beaa56db80e95aa76f3682c557c (diff) |
Allow smaller minimum timer intervals.
Add test_flycam.lua to exercise the smaller intervals.
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llcallbacklist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llcallbacklist.cpp b/indra/llcommon/llcallbacklist.cpp index 555c793333..647b268b8b 100644 --- a/indra/llcommon/llcallbacklist.cpp +++ b/indra/llcommon/llcallbacklist.cpp @@ -391,7 +391,7 @@ public: TimersListener(const LazyEventAPIParams& params): LLEventAPI(params) {} // Forbid a script from requesting callbacks too quickly. - static constexpr LLSD::Real MINTIMER{ 1.0 }; + static constexpr LLSD::Real MINTIMER{ 0.010 }; void scheduleAfter(const LLSD& params); void scheduleEvery(const LLSD& params); |