Skip to content

Commit 57a470c

Browse files
committed
Reposition changes to avoid merge conflicts
1 parent 4520170 commit 57a470c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/ORTS.Common/Input/UserCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ public enum UserCommand
8080
[GetString("Debug Precipitation Decrease")] DebugPrecipitationDecrease,
8181
[GetString("Debug Precipitation Liquidity Increase")] DebugPrecipitationLiquidityIncrease,
8282
[GetString("Debug Precipitation Liquidity Decrease")] DebugPrecipitationLiquidityDecrease,
83+
[GetString("Debug Request Stop Information")] DebugRequestStopInformation,
8384
[GetString("Debug Daylight Offset Increase")] DebugDaylightOffsetIncrease,
8485
[GetString("Debug Daylight Offset Decrease")] DebugDaylightOffsetDecrease,
8586
[GetString("Debug Weather Change")] DebugWeatherChange,
@@ -96,7 +97,6 @@ public enum UserCommand
9697
[GetString("Debug Sound Form")] DebugSoundForm,
9798
[GetString("Debug Physics Form")] DebugPhysicsForm,
9899
[GetString("Debug Toggle Confirmations")] DebugToggleConfirmations,
99-
[GetString("Debug Request Stop Information")] DebugRequestStopInformation,
100100

101101
[GetString("Camera Cab")] CameraCab,
102102
[GetString("Camera Change Passenger Viewpoint")] CameraChangePassengerViewPoint,

Source/ORTS.Settings/InputSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,7 @@ static void InitializeCommands(UserCommandInput[] Commands)
490490
Commands[(int)UserCommand.DebugPrecipitationIncrease] = new UserCommandKeyInput(0x0D, KeyModifiers.Alt);
491491
Commands[(int)UserCommand.DebugPrecipitationLiquidityDecrease] = new UserCommandKeyInput(0x0C, KeyModifiers.Control | KeyModifiers.Alt);
492492
Commands[(int)UserCommand.DebugPrecipitationLiquidityIncrease] = new UserCommandKeyInput(0x0D, KeyModifiers.Control | KeyModifiers.Alt);
493+
Commands[(int)UserCommand.DebugRequestStopInformation] = new UserCommandKeyInput(0x44, KeyModifiers.Alt);
493494
Commands[(int)UserCommand.DebugResetWheelSlip] = new UserCommandKeyInput(0x2D, KeyModifiers.Alt);
494495
Commands[(int)UserCommand.DebugSignalling] = new UserCommandKeyInput(0x57, KeyModifiers.Control | KeyModifiers.Alt);
495496
Commands[(int)UserCommand.DebugSoundForm] = new UserCommandKeyInput(0x1F, KeyModifiers.Alt);
@@ -500,7 +501,6 @@ static void InitializeCommands(UserCommandInput[] Commands)
500501
Commands[(int)UserCommand.DebugTracks] = new UserCommandKeyInput(0x40, KeyModifiers.Control | KeyModifiers.Alt);
501502
Commands[(int)UserCommand.DebugWeatherChange] = new UserCommandKeyInput(0x19, KeyModifiers.Alt);
502503
Commands[(int)UserCommand.DebugToggleConfirmations] = new UserCommandKeyInput(0x44, KeyModifiers.Control | KeyModifiers.Alt);
503-
Commands[(int)UserCommand.DebugRequestStopInformation] = new UserCommandKeyInput(0x44, KeyModifiers.Alt);
504504

505505
Commands[(int)UserCommand.DisplayTrainListWindow] = new UserCommandKeyInput(0x43, KeyModifiers.Alt);
506506
Commands[(int)UserCommand.DisplayCarLabels] = new UserCommandModifiableKeyInput(0x41, Commands[(int)UserCommand.DisplayNextWindowTab]);

0 commit comments

Comments
 (0)