commit 9c3d852db282e59996933316e65141504a756edd
Author: Simon Howard <fraggle@soulsphere.org>
AuthorDate: Sun Jan 3 20:22:15 2016 +0100
Commit: Simon Howard <fraggle@soulsphere.org>
CommitDate: Sun Jan 3 20:22:15 2016 +0100
input: Add missing I_BindInputVariables() calls.
Following the split out of input code into i_input.c, extra calls
need to be added to this new function.
---
src/doom/d_main.c | 1 +
src/heretic/d_main.c | 1 +
src/hexen/h2_main.c | 1 +
src/strife/d_main.c | 1 +
4 files changed, 4 insertions(+)
diff --git a/src/doom/d_main.c b/src/doom/d_main.c
index b3aeacd4..224164e7 100644
--- a/src/doom/d_main.c
+++ b/src/doom/d_main.c
@@ -342,6 +342,7 @@ void D_BindVariables(void)
M_ApplyPlatformDefaults();
+ I_BindInputVariables();
I_BindVideoVariables();
I_BindJoystickVariables();
I_BindSoundVariables();
diff --git a/src/heretic/d_main.c b/src/heretic/d_main.c
index e8832e1a..b3aadc6a 100644
--- a/src/heretic/d_main.c
+++ b/src/heretic/d_main.c
@@ -740,6 +740,7 @@ void D_BindVariables(void)
M_ApplyPlatformDefaults();
+ I_BindInputVariables();
I_BindVideoVariables();
I_BindJoystickVariables();
I_BindSoundVariables();
diff --git a/src/hexen/h2_main.c b/src/hexen/h2_main.c
index 002c6009..92d5c1a3 100644
--- a/src/hexen/h2_main.c
+++ b/src/hexen/h2_main.c
@@ -130,6 +130,7 @@ void D_BindVariables(void)
M_ApplyPlatformDefaults();
+ I_BindInputVariables();
I_BindVideoVariables();
I_BindJoystickVariables();
I_BindSoundVariables();
diff --git a/src/strife/d_main.c b/src/strife/d_main.c
index b07bf6c9..d4216e74 100644
--- a/src/strife/d_main.c
+++ b/src/strife/d_main.c
@@ -398,6 +398,7 @@ void D_BindVariables(void)
M_ApplyPlatformDefaults();
+ I_BindInputVariables();
I_BindVideoVariables();
I_BindJoystickVariables();
I_BindSoundVariables();