From d7ed4760645e5834fe96a46f486c9ee2e2f3961f Mon Sep 17 00:00:00 2001 From: Poggu <45881722+Poggicek@users.noreply.github.com> Date: Mon, 4 Dec 2023 17:30:05 +0100 Subject: [PATCH] Change CPlayerUserId member type to unsigned short (#180) --- public/eiface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/eiface.h b/public/eiface.h index 688f2283..77afbf29 100644 --- a/public/eiface.h +++ b/public/eiface.h @@ -126,7 +126,7 @@ class CPlayerUserId bool operator!=( const CPlayerUserId &other ) const { return other._index != _index; } private: - short _index; + unsigned short _index; }; //-----------------------------------------------------------------------------