Skip to content

Commit a7a0b15

Browse files
committed
Fixed playing incorrect event when blinker stick turning off
1 parent 2137763 commit a7a0b15

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

dist/ts-fmod-plugin.dll

0 Bytes
Binary file not shown.

ts-fmod-plugin/dllmain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ SCSAPI_VOID telemetry_tick(const scs_event_t event, const void* const event_info
147147
else if (!telemetry_data.lblinker && !telemetry_data.rblinker && was_indicator_on)
148148
{
149149
auto stick_blinker_off_event = event_manager->get_event("interior/stick_blinker_off");
150-
if (stick_blinker_off_event != nullptr) stick_park_brake_off_event->start();
150+
if (stick_blinker_off_event != nullptr) stick_blinker_off_event->start();
151151
was_indicator_on = false;
152152
}
153153

0 commit comments

Comments
 (0)