diff --git a/Game Files/AliensExtermination.cpp b/Game Files/AliensExtermination.cpp index 78625c7..95ce3b7 100644 --- a/Game Files/AliensExtermination.cpp +++ b/Game Files/AliensExtermination.cpp @@ -182,19 +182,19 @@ void AliensExtermination::FFBLoop(EffectConstants* constants, Helpers* helpers, { double percentForce = ((Gun1pStrength) / 100.0); double percentLength = configFeedbackLength; - triggers->Rumble(1.0, 1.0, percentLength); + triggers->Rumble(percentForce, percentForce, percentLength); } else if (HowtoRumbleGunEffect == 1) { double percentForce = ((Gun1pStrength) / 100.0); double percentLength = configFeedbackLength; - triggers->Rumble(0, 1.0, percentLength); + triggers->Rumble(0, percentForce, percentLength); } else if (HowtoRumbleGunEffect == 2) { double percentForce = ((Gun1pStrength) / 100.0); double percentLength = configFeedbackLength; - triggers->Rumble(1.0, 0, percentLength); + triggers->Rumble(percentForce, 0, percentLength); } } } diff --git a/Includes/FFBPluginReadme.txt b/Includes/FFBPluginReadme.txt index 15f179c..1e55034 100644 --- a/Includes/FFBPluginReadme.txt +++ b/Includes/FFBPluginReadme.txt @@ -1,6 +1,6 @@ ***FFB Arcade Plugin*** -Version 1.4a +Version 1.4b Brought to you by Boomslangnz, Ducon2016, Spazzy & pinkimo. @@ -8,7 +8,20 @@ This is a plugin to provide Force Feedback and Rumble (and in certain cases adde to add FFB to Daytona Championship USA and it grew from there to support several more games and rumble was added. While best efforts were made to try to resemble the real arcade force feedback, It will never be 100% accurate & in some cases eg Mario Kart GP DX, Pokken Tournament and Battle Gear 4,effects were created entirely from scratch -so are not using real force feedback values. Most games use correct ffb values however :) +so are not using real force feedback values. Most games use REAL ffb values however :) + +***1.4b Changes*** + +- Added rumble support for Golden Gun (up to 2 players) + +- Added ability to have individual game settings for MAME & Supermodel Output Games + +- Certain MAME Output will now use all available values as some were skipped previously + +- Fixed issue on Aliens Extermination where it only Gun Shoot was always at full power + +- MAME Lightgun games now only work on rumble (removed old sine effect on these, seemed unnecessary to include) + ***1.4a Changes***