From 75ae4d2bcf00303f36a0c475887e369fd441891c Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Fri, 2 Dec 2022 21:54:34 +0100 Subject: [PATCH] Fix crash when loggers are used before detour init 'v_Plat_FloatTime' is only initialized during detour init. Using the loggers before will cause a crash. Code now logs 0.0 when v_Plat_FloatTime is nullptr. Showing 0.0 at this stage is correct as the game dll isn't initialized by then. --- r5dev/tier0/platform.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/tier0/platform.cpp b/r5dev/tier0/platform.cpp index 6e1d7433..443e6f60 100644 --- a/r5dev/tier0/platform.cpp +++ b/r5dev/tier0/platform.cpp @@ -26,7 +26,7 @@ uint64_t Plat_MSTime() const char* Plat_GetProcessUpTime() { static char szBuf[4096]; - sprintf_s(szBuf, sizeof(szBuf), "[%.3f] ", Plat_FloatTime()); + sprintf_s(szBuf, sizeof(szBuf), "[%.3f] ", v_Plat_FloatTime ? Plat_FloatTime() : 0.0); return szBuf; } @@ -38,5 +38,5 @@ const char* Plat_GetProcessUpTime() //----------------------------------------------------------------------------- void Plat_GetProcessUpTime(char* szBuf, size_t nSize) { - sprintf_s(szBuf, nSize, "[%.3f] ", Plat_FloatTime()); + sprintf_s(szBuf, nSize, "[%.3f] ", v_Plat_FloatTime ? Plat_FloatTime() : 0.0); } \ No newline at end of file