From 600076030f2c596f3b4a78f50f950d57c94baa20 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 23 Apr 2020 21:12:49 -0400 Subject: [PATCH] CStateManager: Make use of bool parameter in SetWarping() Allows toggling the warping. --- Runtime/CStateManager.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/CStateManager.hpp b/Runtime/CStateManager.hpp index 326362c32..e2c20d916 100644 --- a/Runtime/CStateManager.hpp +++ b/Runtime/CStateManager.hpp @@ -457,6 +457,6 @@ public: static float g_EscapeShakeCountdown; static bool g_EscapeShakeCountdownInit; - void SetWarping(bool v) { m_warping = true; } + void SetWarping(bool warp) { m_warping = warp; } }; } // namespace urde