aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/SignUpdatePacket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/SignUpdatePacket.cpp')
-rw-r--r--Minecraft.World/SignUpdatePacket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/SignUpdatePacket.cpp b/Minecraft.World/SignUpdatePacket.cpp
index 10cc223e..7b3a3217 100644
--- a/Minecraft.World/SignUpdatePacket.cpp
+++ b/Minecraft.World/SignUpdatePacket.cpp
@@ -66,6 +66,6 @@ int SignUpdatePacket::getEstimatedSize()
l+=sizeof(byte);
for (int i = 0; i < MAX_SIGN_LINES; i++)
- l += static_cast<int>(lines[i].length());
+ l += (int)lines[i].length();
return l;
}