Change the netplay protocol version since compression isn't backwards

compatible.
This commit is contained in:
Gregor Richards 2016-10-30 14:28:45 -04:00
parent 53c6223dc6
commit 9f03020af8

View File

@ -35,7 +35,7 @@
#define MAX_SPECTATORS 16
#define RARCH_DEFAULT_PORT 55435
#define NETPLAY_PROTOCOL_VERSION 2
#define NETPLAY_PROTOCOL_VERSION 3
#define PREV_PTR(x) ((x) == 0 ? netplay->buffer_size - 1 : (x) - 1)
#define NEXT_PTR(x) ((x + 1) % netplay->buffer_size)