Commit 09ed78db authored by nanahira's avatar nanahira

Merge branch 'master' into server

parents bce1a375 11fa45f8
Pipeline #6008 passed with stages
in 4 minutes and 21 seconds
......@@ -263,7 +263,7 @@ void DuelClient::HandleSTOCPacketLan(char* data, unsigned int len) {
char* pdata = data;
unsigned char pktType = BufferIO::ReadUInt8(pdata);
#ifdef YGOPRO_MESSAGE_DEBUG
printf("STOC: %d Length: %ld\n", pktType, len);
printf("STOC: %d Length: %d\n", pktType, len);
#endif
switch(pktType) {
case STOC_GAME_MSG: {
......@@ -988,7 +988,7 @@ int DuelClient::ClientAnalyze(char * msg, unsigned int len) {
wchar_t textBuffer[256];
mainGame->dInfo.curMsg = BufferIO::ReadUInt8(pbuf);
#ifdef YGOPRO_MESSAGE_DEBUG
printf("MSG: %d Length: %ld\n", mainGame->dInfo.curMsg, len);
printf("MSG: %d Length: %d\n", mainGame->dInfo.curMsg, len);
#endif
if(mainGame->dInfo.curMsg != MSG_RETRY) {
memcpy(last_successful_msg, msg, len);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment