summaryrefslogtreecommitdiff
path: root/src/net/character.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/character.h')
-rw-r--r--src/net/character.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/character.h b/src/net/character.h
index 1b5113627..bab115b7f 100644
--- a/src/net/character.h
+++ b/src/net/character.h
@@ -42,7 +42,7 @@ namespace Net
struct Character final
{
Character() :
- slot(0),
+ slot(0U),
dummy(nullptr),
data()
{
@@ -55,7 +55,7 @@ struct Character final
delete2(dummy);
}
- int slot; /**< The index in the list of characters */
+ uint8_t slot; /**< The index in the list of characters */
LocalPlayer *dummy; /**< A dummy representing this character */
PlayerInfoBackend data;
};