File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Source/Orts.Simulation/Simulation/Signalling Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -567,10 +567,8 @@ public void Update(bool preUpdate)
567
567
568
568
if ( foundSignals > 0 )
569
569
{
570
- // loop through all signals
571
- ``` // loop through all the signals, but only one batch of signals with every call to this method.
572
- // update required part
573
- ``` // update one batch of signals. Batch ends when time taken exceeds 1/20th of time for all signals.
570
+ // loop through all the signals, but only one batch of signals with every call to this method.
571
+ // update one batch of signals. Batch ends when time taken exceeds 1/20th of time for all signals.
574
572
// Processing 1/20th of signals in each batch gave a jerky result as processing time varies greatly.
575
573
// Smoother results now that equal time is given to each batch and let the batch size vary.
576
574
var updates = 0 ;
You can’t perform that action at this time.
0 commit comments