From 414629e296b6ad79e238a9d95b6a10ccaa1fc587 Mon Sep 17 00:00:00 2001 From: RD42 <42702181+dashr9230@users.noreply.github.com> Date: Sun, 3 Nov 2024 17:30:37 +0800 Subject: [PATCH] [saco] Match `GameSetRemotePlayerCameraExtZoom(...)` --- saco/game/aimstuff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saco/game/aimstuff.cpp b/saco/game/aimstuff.cpp index cb5abc0..522ccc1 100644 --- a/saco/game/aimstuff.cpp +++ b/saco/game/aimstuff.cpp @@ -68,7 +68,7 @@ float __stdcall GameGetLocalPlayerCameraExtZoom() void __stdcall GameSetRemotePlayerCameraExtZoom(BYTE bytePlayerID) { float fZoom = fCameraExtZoom[bytePlayerID]; - float fValue = fZoom * 35.0f + 35.0f; // unnormalize for 35.0 to 70.0 + float fValue = (fZoom * 35.0f) + 35.0f; // unnormalize for 35.0 to 70.0 *pfCameraExtZoom = fValue; float fRatio = fAspectRatio[bytePlayerID];