diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-07-16 22:03:31 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-07-16 22:03:31 +0200 |
commit | ebdc5cca7f50676e4fc87b6c4b5bd95c0e57cec9 (patch) | |
tree | cd7f50c56d7a3040a05a8ae06c2ebbb017575bb0 /src/control | |
parent | make game load all platform dffs (diff) | |
parent | Audio fixes (diff) | |
download | re3-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 '')
-rw-r--r-- | src/control/Record.h | 6 |
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 { |