From c69819e0dba7c1612c557bbd0fcfc30164649796 Mon Sep 17 00:00:00 2001 From: Koncord Date: Tue, 3 Jul 2018 03:34:30 +0800 Subject: [PATCH] [General] Change type of refNumIndex & mpNum to unsigned --- components/openmw-mp/Base/BasePlayer.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/openmw-mp/Base/BasePlayer.hpp b/components/openmw-mp/Base/BasePlayer.hpp index bc3fd578b..e5e2d1062 100644 --- a/components/openmw-mp/Base/BasePlayer.hpp +++ b/components/openmw-mp/Base/BasePlayer.hpp @@ -18,8 +18,8 @@ namespace mwmp struct CurrentContainer { std::string refId; - int refNumIndex; - int mpNum; + unsigned int refNumIndex; + unsigned int mpNum; bool loot; };