From 2245992deed1a2e2e573d75b1d6d0e714a6660c1 Mon Sep 17 00:00:00 2001 From: Cray Elliott Date: Wed, 6 Nov 2019 04:06:08 -0800 Subject: [PATCH] input: don't merge blisster adapter ports --- input.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/input.cpp b/input.cpp index 1cfa808..57e6cde 100644 --- a/input.cpp +++ b/input.cpp @@ -2596,7 +2596,8 @@ int input_test(int getchar) } // Raphnet devices: clear uniq to prevent merging the ports - if (input[n].vid == 0x289b) + // bliss-box adapters need this as well + if (input[n].vid == 0x289b || input[n].vid == 0x16d0) { memset(input[n].uniq, 0, sizeof(input[n].uniq)); }