summaryrefslogtreecommitdiffhomepage
path: root/NetEx/NetMsg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'NetEx/NetMsg.cpp')
-rw-r--r--NetEx/NetMsg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/NetEx/NetMsg.cpp b/NetEx/NetMsg.cpp
index e326d3a..e44e9e2 100644
--- a/NetEx/NetMsg.cpp
+++ b/NetEx/NetMsg.cpp
@@ -47,7 +47,7 @@ static DWORD net_msg_sequence = 1;
// +-------------------------------------------------------------------+
-NetMsg::NetMsg(DWORD nid, void* d, int l, BYTE f)
+NetMsg::NetMsg(DWORD nid, void* d, int l, BYTE f)
: msgid(net_msg_sequence++), netid(nid), len(l), flags(f)
{
data = new(__FILE__,__LINE__) BYTE[len];
@@ -67,7 +67,7 @@ NetMsg::NetMsg(DWORD nid, void* d, int l, BYTE f)
// +-------------------------------------------------------------------+
-NetMsg::NetMsg(DWORD nid, BYTE type, const char* text, int l, BYTE f)
+NetMsg::NetMsg(DWORD nid, BYTE type, const char* text, int l, BYTE f)
: msgid(net_msg_sequence++), netid(nid), len(2+l), flags(f)
{
data = new(__FILE__,__LINE__) BYTE[len];