Move the player 3 and 4 CMD defines to the correct place.

This commit is contained in:
Sryder 2018-11-18 12:32:59 +00:00
parent 9ffcc79288
commit dac8a4ab93
1 changed files with 8 additions and 9 deletions

View File

@ -62,6 +62,12 @@ typedef enum
// Add non-PT_CANFAIL packet types here to avoid breaking MS compatibility.
// Kart-specific packets
PT_CLIENT3CMD, // 3P
PT_CLIENT3MIS,
PT_CLIENT4CMD, // 4P
PT_CLIENT4MIS,
PT_CANFAIL, // This is kind of a priority. Anything bigger than CANFAIL
// allows HSendPacket(*, true, *, *) to return false.
// In addition, this packet can't occupy all the available slots.
@ -79,13 +85,6 @@ typedef enum
#ifdef NEWPING
PT_PING, // Packet sent to tell clients the other client's latency to server.
#endif
// Kart-specific packets
PT_CLIENT3CMD, // 3P
PT_CLIENT3MIS,
PT_CLIENT4CMD, // 4P
PT_CLIENT4MIS,
NUMPACKETTYPE
} packettype_t;