diff options
| -rw-r--r-- | src/game/g_game.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_game.h b/src/game/g_game.h index 4c46beab..9803d6a2 100644 --- a/src/game/g_game.h +++ b/src/game/g_game.h @@ -14,7 +14,7 @@ struct tuning_params tuning_params() { const float ticks_per_second = 50.0f; - #define MACRO_TUNING_PARAM(name,value) name = value; + #define MACRO_TUNING_PARAM(name,value) name.set((int)(value*100.0f)); #include "g_tuning.h" #undef MACRO_TUNING_PARAM } |