1
0
mirror of synced 2025-02-17 18:59:24 +01:00

Modified Sleep for Lindbergh Games

Only Sleep when Lindbergh otherwise
no sleep for games that require fast loading eg Road Fighters 3D
This commit is contained in:
Aaron M 2019-10-26 15:52:13 +13:00
parent d8a3920af9
commit f71842e619

View File

@ -1652,7 +1652,10 @@ void TriggerSpringEffect(double strength)
DWORD WINAPI FFBLoop(LPVOID lpParam)
{
hlp.log("In FFBLoop");
Sleep(2500);
if (configGameId == 15 || configGameId == 16 || configGameId == 23 || configGameId == 24) //Lindbergh Games which require Sleep until loaded enough
{
Sleep(2500);
}
SDL_HapticStopAll(haptic);
Initialize(0);
hlp.log("Initialize() complete");