Bump version to 3.4, change product IDs

This commit is contained in:
Raphael Assenat 2016-11-28 11:45:52 -05:00
parent e7bca6ce08
commit e944017c36
2 changed files with 8 additions and 8 deletions

View File

@ -1,3 +1,3 @@
OBJS=main.o usb.o usbpad.o mappings.o gcn64_protocol.o n64.o gamecube.o usart1.o bootloader.o eeprom.o config.o hiddata.o usbstrings.o intervaltimer.o version.o gcn64txrx0.o gcn64txrx1.o gcn64txrx2.o gcn64txrx3.o gamepads.o
VERSIONSTR=\"3.3.2\"
VERSIONSTR_SHORT=\"3.3\"
VERSIONSTR=\"3.4.0\"
VERSIONSTR_SHORT=\"3.4\"

12
main.c
View File

@ -40,13 +40,13 @@
#define MAX_PLAYERS 2
#define GCN64_USB_PID 0x001D
#define N64_USB_PID 0x0020
#define GC_USB_PID 0x0021
#define GCN64_USB_PID 0x0032
#define N64_USB_PID 0x0033
#define GC_USB_PID 0x0034
#define DUAL_GCN64_USB_PID 0x0022
#define DUAL_N64_USB_PID 0x0030
#define DUAL_GC_USB_PID 0x0031
#define DUAL_GCN64_USB_PID 0x0035
#define DUAL_N64_USB_PID 0x0036
#define DUAL_GC_USB_PID 0x0037
/* Those .c files are included rather than linked for we
* want the sizeof() operator to work on the arrays */