Skip to content

Commit 7cf73c0

Browse files
committed
Automatic merge of T1.5.1-974-g2634ac3be and 17 pull requests
- Pull request #799 at dfc715e: Consolidated wind simulation - Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters - Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder - Pull request #882 at b3f83ed: Blueprint/train car operations UI window - Pull request #891 at 9a1d6b2: Auto save - Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH - Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains - Pull request #900 at c27f32d: DMI updates - Pull request #903 at 3e390b8: Downloading route content (Github, zip) - Pull request #912 at cda1d74: New Triple Valve Features Vol. 2 - Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t… - Pull request #922 at abe2e52: Autopilot for timetable mode - Pull request #943 at fb1f454: Dynamic Brakes Behavior & Display Improvements - Pull request #945 at 263cbf3: Display tractive force instead of compensated out force - Pull request #946 at 47fcd1c: Advanced track sounds - Pull request #947 at 6be9776: Fix .ace Textures Not Being Used as Fallback for Missing .dds - Pull request #948 at a687981: Fix Cycling Lights
19 parents 839636f + 2634ac3 + dfc715e + d00beb9 + f92de76 + b3f83ed + 9a1d6b2 + 1f5ba4c + 5866028 + c27f32d + 3e390b8 + cda1d74 + 26cc6a8 + abe2e52 + fb1f454 + 263cbf3 + 47fcd1c + 6be9776 + a687981 commit 7cf73c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/RunActivity/Viewer3D/Lights.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ protected void SetUpTransitions(Action<int, int, int> transitionHandler)
437437
for (var i = 0; i < Light.States.Count - 1; i++)
438438
transitionHandler(i, i, i + 1);
439439
for (var i = Light.States.Count - 1; i > 0; i--)
440-
transitionHandler(Light.States.Count * 2 - 1 - i, i, i - 1);
440+
transitionHandler((Light.States.Count * 2 - 2) - i, i, i - 1);
441441
}
442442
else
443443
{

0 commit comments

Comments
 (0)