Precaution against rapid NullReferenceException throws in Special Actions

This commit is contained in:
Travis Nickles 2019-09-21 16:26:59 -05:00
parent 8f805a819e
commit 9e557daefd

View File

@ -1940,6 +1940,11 @@ namespace DS4Windows
actionDoneCount--; actionDoneCount--;
} }
if (action == null)
{
continue;
}
double time = 0.0; double time = 0.0;
//If a key or button is assigned to the trigger, a key special action is used like //If a key or button is assigned to the trigger, a key special action is used like
//a quick tap to use and hold to use the regular custom button/key //a quick tap to use and hold to use the regular custom button/key