Lowered sbringBoost (#103)

Lowered springBoost from 1.5x to 1.0x

Co-authored-by: Dniel97 <Dniel97@noreply.gitea.tendokyu.moe>
Reviewed-on: https://gitea.tendokyu.moe/TeamTofuShop/segatools/pulls/103
Co-authored-by: HaseoSora <haseosora@noreply.gitea.tendokyu.moe>
Co-committed-by: HaseoSora <haseosora@noreply.gitea.tendokyu.moe>
This commit is contained in:
HaseoSora
2026-05-12 08:02:16 +00:00
committed by Dniel97
co-authored by Dniel97
parent a21548d031
commit 31a6d3aacf
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -32,8 +32,8 @@ static uint8_t idac_di_rumble_duration;
static uint8_t idac_di_base_damper;
static uint8_t idac_di_deadband;
/* Fixed spring boost multiplier (1.5x) */
static const float idac_di_spring_boost = 1.5f;
/* Fixed spring boost multiplier */
static const float idac_di_spring_boost = 1.0f;
HRESULT idac_di_dev_init(const struct idac_di_config* cfg,
IDirectInputDevice8W* dev, HWND wnd) {
+2 -2
View File
@@ -31,8 +31,8 @@ static uint8_t idz_di_rumble_duration;
static uint8_t idz_di_base_damper;
static uint8_t idz_di_deadband;
/* Fixed spring boost multiplier (1.5x) */
static const float idz_di_spring_boost = 1.5f;
/* Fixed spring boost multiplier */
static const float idz_di_spring_boost = 1.0f;
HRESULT idz_di_dev_init(const struct idz_di_config* cfg,
IDirectInputDevice8W* dev, HWND wnd) {
+2 -2
View File
@@ -32,8 +32,8 @@ static uint8_t swdc_di_rumble_duration;
static uint8_t swdc_di_base_damper;
static uint8_t swdc_di_deadband;
/* Fixed spring boost multiplier (1.5x) */
static const float swdc_di_spring_boost = 1.5f;
/* Fixed spring boost multiplier */
static const float swdc_di_spring_boost = 1.0f;
HRESULT swdc_di_dev_init(const struct swdc_di_config* cfg,
IDirectInputDevice8W* dev, HWND wnd) {