소스 검색

wordo fix

eihrul 15 년 전
부모
커밋
3ddbfb202d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      peer.c

+ 2 - 2
peer.c

@@ -786,11 +786,11 @@ enet_peer_queue_incoming_command (ENetPeer * peer, const ENetProtocol * command,
     {
     case ENET_PROTOCOL_COMMAND_SEND_FRAGMENT:
     case ENET_PROTOCOL_COMMAND_SEND_RELIABLE:
-       enet_peer_dispatch_reliable_incoming_commands (peer, channel);
+       enet_peer_dispatch_incoming_reliable_commands (peer, channel);
        break;
 
     default:
-       enet_peer_dispatch_unreliable_incoming_commands (peer, channel);
+       enet_peer_dispatch_incoming_unreliable_commands (peer, channel);
        break;
     }