Add FullTilt lane light behavior (#157)

* Add FullTilt lane light behavior

* Replaced spaces with tabs
This commit is contained in:
Natty 2022-09-23 06:42:19 +02:00 committed by GitHub
parent 7003b01e5d
commit e7ddebd16c
Signed by untrusted user: GitHub
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -1348,9 +1348,12 @@ void control::ReentryLanesRolloverControl(MessageCode code, TPinballComponent* c
if (!light->FlasherOnFlag)
{
if (light->LightOnFlag)
{
if (!pb::FullTiltMode)
{
light->Message(MessageCode::TLightResetAndTurnOff, 0.0);
}
}
else
{
light->Message(MessageCode::TLightResetAndTurnOn, 0.0);
@ -1400,9 +1403,12 @@ void control::LaunchLanesRolloverControl(MessageCode code, TPinballComponent* ca
if (!light->FlasherOnFlag)
{
if (light->LightOnFlag)
{
if (!pb::FullTiltMode)
{
light->Message(MessageCode::TLightResetAndTurnOff, 0.0);
}
}
else
{
light->Message(MessageCode::TLightResetAndTurnOn, 0.0);