From bbdaf66a4862205a417cdc501c9624da9ef41193 Mon Sep 17 00:00:00 2001 From: "Nathanial.C.Jones" Date: Tue, 31 Jan 2012 03:41:12 +0000 Subject: [PATCH] Implemented workaround change noted in issue 512. --- QuestHelper/utility.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/QuestHelper/utility.lua b/QuestHelper/utility.lua index 8836c82..c4f3d3a 100644 --- a/QuestHelper/utility.lua +++ b/QuestHelper/utility.lua @@ -1,5 +1,7 @@ function QuestHelper_GetTime() - return debugprofilestop() / 1000 + if IsMacClient() then return debugprofilestop() + else return debugprofilestop() / 1000 + end end local GetTime = QuestHelper_GetTime