1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2025-09-01 06:20:15 +02:00

Add FullTilt lane light behavior

This commit is contained in:
Natty 2022-09-21 16:36:40 +02:00
parent 9f0ae0434e
commit 59e5c6332d
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: E2477561D4C45028

View file

@ -1349,7 +1349,10 @@ void control::ReentryLanesRolloverControl(MessageCode code, TPinballComponent* c
{
if (light->LightOnFlag)
{
light->Message(MessageCode::TLightResetAndTurnOff, 0.0);
if (!pb::FullTiltMode)
{
light->Message(MessageCode::TLightResetAndTurnOff, 0.0);
}
}
else
{
@ -1401,7 +1404,10 @@ void control::LaunchLanesRolloverControl(MessageCode code, TPinballComponent* ca
{
if (light->LightOnFlag)
{
light->Message(MessageCode::TLightResetAndTurnOff, 0.0);
if (!pb::FullTiltMode)
{
light->Message(MessageCode::TLightResetAndTurnOff, 0.0);
}
}
else
{