change joystick mode mapping string delimiter

This commit is contained in:
Thomas Jentzsch 2019-08-10 11:30:35 +02:00
parent 22acedee5f
commit 09e9402075
1 changed files with 1 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class PhysicalJoystick
{
friend class PhysicalJoystickHandler;
static constexpr char MODE_DELIM = 0xA7; //'§', must not be '^', '|' or '#'
static constexpr char MODE_DELIM = '>'; // must not be '^', '|' or '#'
public:
PhysicalJoystick();
@ -72,7 +72,6 @@ class PhysicalJoystick
int* axisLastValue;
int* buttonLast;
// Hashmaps of controller events
JoyMap joyMap;