From ec09055599a1c09aa0214e7236ddf2a18e46a611 Mon Sep 17 00:00:00 2001 From: Sergeanur Date: Thu, 16 Jul 2020 22:21:09 +0300 Subject: [PATCH] Fix CCarStateEachFrame --- src/control/Record.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/control/Record.h b/src/control/Record.h index 7af733ba..8b55b1f4 100644 --- a/src/control/Record.h +++ b/src/control/Record.h @@ -17,13 +17,13 @@ public: int8 forwardY; int8 forwardZ; int8 wheel; - uint8 gas; - uint8 brake; + int8 gas; + int8 brake; bool handbrake; CVector pos; }; -extern char gString[256];; +extern char gString[256]; class CRecordDataForChase {