summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-07-16 22:03:31 +0200
committerSergeanur <s.anureev@yandex.ua>2020-07-16 22:03:31 +0200
commitebdc5cca7f50676e4fc87b6c4b5bd95c0e57cec9 (patch)
treecd7f50c56d7a3040a05a8ae06c2ebbb017575bb0 /src/control
parentmake game load all platform dffs (diff)
parentAudio fixes (diff)
downloadre3-ebdc5cca7f50676e4fc87b6c4b5bd95c0e57cec9.tar
re3-ebdc5cca7f50676e4fc87b6c4b5bd95c0e57cec9.tar.gz
re3-ebdc5cca7f50676e4fc87b6c4b5bd95c0e57cec9.tar.bz2
re3-ebdc5cca7f50676e4fc87b6c4b5bd95c0e57cec9.tar.lz
re3-ebdc5cca7f50676e4fc87b6c4b5bd95c0e57cec9.tar.xz
re3-ebdc5cca7f50676e4fc87b6c4b5bd95c0e57cec9.tar.zst
re3-ebdc5cca7f50676e4fc87b6c4b5bd95c0e57cec9.zip
Diffstat (limited to 'src/control')
-rw-r--r--src/control/Record.h6
1 files 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
{