summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/Pad.h2
-rw-r--r--src/core/main.cpp1
-rw-r--r--src/core/main.h1
3 files changed, 3 insertions, 1 deletions
diff --git a/src/core/Pad.h b/src/core/Pad.h
index 748482e7..cc0fa9d1 100644
--- a/src/core/Pad.h
+++ b/src/core/Pad.h
@@ -140,7 +140,7 @@ class CPad
public:
enum
{
- HORNHISTORY_SIZE = 5,
+ HORNHISTORY_SIZE = 8,
DRUNK_STEERING_BUFFER_SIZE = 10,
};
CControllerState NewState;
diff --git a/src/core/main.cpp b/src/core/main.cpp
index 2a130684..562d3f1d 100644
--- a/src/core/main.cpp
+++ b/src/core/main.cpp
@@ -95,6 +95,7 @@ bool gUseModelResources;
bool gUseResources;
bool gNASTY_NASTY_MEM_SHUTDOWN_HACK; // rather unused
bool gbPreviewCity; // don't do worldstream-style rendering but traditional method
+bool gMultiplayerSuperBrakeOnPause = true;
float FramesPerSecond = 30.0f;
diff --git a/src/core/main.h b/src/core/main.h
index 400730a0..0c43d7f4 100644
--- a/src/core/main.h
+++ b/src/core/main.h
@@ -43,6 +43,7 @@ extern bool gUseModelResources;
extern bool gUseResources;
extern bool gNASTY_NASTY_MEM_SHUTDOWN_HACK;
extern bool gbPreviewCity;
+extern bool gMultiplayerSuperBrakeOnPause;
class CSprite2d;