From 9c7bff008c178d04fc27240ef65410d6fa036154 Mon Sep 17 00:00:00 2001 From: j000 Date: Fri, 27 Nov 2015 23:09:34 +0100 Subject: [PATCH] Added bloody-v8 PID --- Mouse.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mouse.h b/Mouse.h index e50c239..07afbe2 100644 --- a/Mouse.h +++ b/Mouse.h @@ -11,9 +11,10 @@ static const int A4TECH_VID = 0x09da; static const int BLOODY_V5_PID = 0x172A; static const int BLOODY_V7_PID = 0xF613; +static const int BLOODY_V8_PID = 0x11F5; static const int BLOODY_R7_PID = 0x1485; -static const int COMPATIBLE_PIDS[] = {BLOODY_V5_PID, BLOODY_V7_PID, BLOODY_R7_PID}; +static const int COMPATIBLE_PIDS[] = {BLOODY_V5_PID, BLOODY_V7_PID, BLOODY_V8_PID, BLOODY_R7_PID}; static const size_t COMPATIBLE_PIDS_SIZE = sizeof(COMPATIBLE_PIDS)/sizeof(COMPATIBLE_PIDS[0]); static const int A4TECH_MAGIC = 0x07;