From 179e2627eb8168341ea19c3e02336ba4240c2b25 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Sun, 3 Mar 2019 15:36:04 -0500 Subject: [PATCH] This was actually better before, I think --- indra/newview/llpanelmaininventory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index 2b0d9d2f9..0ce1c93b8 100644 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -1116,7 +1116,7 @@ void LLFloaterInventoryFinder::draw() U32 hours = (U32)mSpinSinceHours->get(); if (hours >= 24) { - days = hours / 24; + days += hours / 24; hours = (U32)hours % 24; mSpinSinceDays->set((F32)days); mSpinSinceHours->set((F32)hours);