summaryrefslogtreecommitdiff
path: root/src/net/tmwa/network.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/network.cpp')
-rw-r--r--src/net/tmwa/network.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/net/tmwa/network.cpp b/src/net/tmwa/network.cpp
index 98f6485a7..0492f6609 100644
--- a/src/net/tmwa/network.cpp
+++ b/src/net/tmwa/network.cpp
@@ -179,8 +179,11 @@ bool Network::messageReady()
}
else
{
- if (msgId >= 0 && msgId < sizeof(packet_lengths) / sizeof (short))
+ if (msgId >= 0 && msgId < static_cast<signed>(
+ sizeof(packet_lengths) / sizeof (short)))
+ {
len = packet_lengths[msgId];
+ }
}
if (len == -1 && mInSize > 4)