From d4264b64696ad7ae753119dc58892f3b61c99b99 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 26 Apr 2020 03:22:00 -0400 Subject: [PATCH] CWallWalker: Eliminate signed->unsigned implicit conversion in header Prevents compiler warnings. --- Runtime/World/CWallWalker.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/World/CWallWalker.hpp b/Runtime/World/CWallWalker.hpp index 0e381efaf..21428b5bc 100644 --- a/Runtime/World/CWallWalker.hpp +++ b/Runtime/World/CWallWalker.hpp @@ -15,7 +15,7 @@ public: enum class EWalkerType { Parasite = 0, Oculus = 1, Geemer = 2, IceZoomer = 3, Seedling = 4 }; protected: - CCollisionSurface x568_alignNormal{zeus::CVector3f(), zeus::skForward, zeus::skRight, -1}; + CCollisionSurface x568_alignNormal{zeus::CVector3f(), zeus::skForward, zeus::skRight, UINT32_MAX}; CCollidableSphere x590_colSphere; float x5b0_collisionCloseMargin; float x5b4_alignAngVel;