From 1509228b8fecf57d8ebb7038afb9f88d0c2cd7d4 Mon Sep 17 00:00:00 2001 From: GAMMACASE <31375974+GAMMACASE@users.noreply.github.com> Date: Tue, 1 Apr 2025 12:31:09 +0300 Subject: [PATCH] Correct GetCPUInformation() usage --- public/tier0/fasttimer.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/public/tier0/fasttimer.h b/public/tier0/fasttimer.h index 9778cc76..116aa72a 100644 --- a/public/tier0/fasttimer.h +++ b/public/tier0/fasttimer.h @@ -1,4 +1,4 @@ -//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============// +//========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============// // // Purpose: // @@ -84,16 +84,14 @@ public: static void Init() { - const CPUInformation& pi = GetCPUInformation(); - if ( !IsX360() ) { - g_ClockSpeed = pi.m_Speed; + g_ClockSpeed = Plat_CPUTickFrequency(); } else { // cycle counter runs as doc'd at 1/64 Xbox 3.2GHz clock speed, thus 50 Mhz - g_ClockSpeed = pi.m_Speed / 64L; + g_ClockSpeed = Plat_CPUTickFrequency() / 64L; } g_dwClockSpeed = (unsigned long)g_ClockSpeed;