Attempt to give meaningful names to mevent srv fields

This commit is contained in:
PikalaxALT
2018-12-01 20:27:35 -05:00
parent 8473bf1bcd
commit 2fbe528d5e
8 changed files with 352 additions and 203 deletions
+2 -2
View File
@@ -41,10 +41,10 @@ void mevent_srv_sub_init(struct mevent_srv_sub * svr, u32 sendPlayerNo, u32 recv
svr->recvFunc = mevent_receive_func;
}
void mevent_srv_sub_init_send(struct mevent_srv_sub * svr, u32 a1, const void * src, u32 size)
void mevent_srv_sub_init_send(struct mevent_srv_sub * svr, u32 ident, const void * src, u32 size)
{
svr->seqno = 0;
svr->sendIdent = a1;
svr->sendIdent = ident;
svr->sendCounter = 0;
svr->sendCRC = 0;
if (size != 0)