From f9e52ef2df6effbd0df8033846601f5cefa8eb59 Mon Sep 17 00:00:00 2001 From: Ansariel Date: Wed, 6 Jul 2016 14:50:22 +0200 Subject: [PATCH] Double, not float... --- indra/newview/llviewerobject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp index ed42bafbcb..5c84afb53c 100644 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -145,7 +145,7 @@ std::map LLViewerObject::sObjectDataMap; // JC 3/18/2003 const F32 PHYSICS_TIMESTEP = 1.f / 45.f; -const F64 INV_REQUEST_EXPIRE_TIME_SEC = 60.f; +const F64 INV_REQUEST_EXPIRE_TIME_SEC = 60.0; static LLTrace::BlockTimerStatHandle FTM_CREATE_OBJECT("Create Object");