From f2d8bd9dc3f32b3240c46d2f396fc061126f4d18 Mon Sep 17 00:00:00 2001 From: Roberto Viola Date: Sat, 30 Dec 2023 18:54:37 +0000 Subject: [PATCH] Update PlayerStateWrapper.h --- src/zwift-api/PlayerStateWrapper.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/zwift-api/PlayerStateWrapper.h b/src/zwift-api/PlayerStateWrapper.h index 4f52096a2..06c0c93b9 100644 --- a/src/zwift-api/PlayerStateWrapper.h +++ b/src/zwift-api/PlayerStateWrapper.h @@ -84,9 +84,9 @@ class PlayerStateWrapper { public: enum TURN_SIGNALS { - RIGHT = 'right', - LEFT = 'left', - STRAIGHT = 'straight' + RIGHT = 0, + LEFT = 1, + STRAIGHT = 2 }; //PlayerStateWrapper(const zwift_messages::PlayerState& playerState) : playerState(playerState) {}