Skip to content

Commit 07369f3

Browse files
committed
attempt to fix auto-merge for the unstable branch
1 parent aa40c75 commit 07369f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Orts.Formats.Msts/CabViewFile.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ public CabViewControls(STFReader stf, string basepath)
302302
int count = stf.ReadInt(null);
303303

304304
stf.ParseBlock(new STFReader.TokenProcessor[] {
305+
new STFReader.TokenProcessor("ortsanimateddisplay", ()=>{ Add(new CVCAnimatedDisplay(stf, basepath)); }),
305306
new STFReader.TokenProcessor("dial", ()=>{ Add(new CVCDial(stf, basepath)); }),
306307
new STFReader.TokenProcessor("gauge", ()=>{ Add(new CVCGauge(stf, basepath)); }),
307308
new STFReader.TokenProcessor("lever", ()=>{ Add(new CVCDiscrete(stf, basepath)); }),
@@ -314,8 +315,7 @@ public CabViewControls(STFReader stf, string basepath)
314315
new STFReader.TokenProcessor("combinedcontrol", ()=>{ Add(new CVCDiscrete(stf, basepath)); }),
315316
new STFReader.TokenProcessor("firebox", ()=>{ Add(new CVCFirebox(stf, basepath)); }),
316317
new STFReader.TokenProcessor("dialclock", ()=>{ ProcessDialClock(stf, basepath); }),
317-
new STFReader.TokenProcessor("digitalclock", ()=>{ Add(new CVCDigitalClock(stf, basepath)); }),
318-
new STFReader.TokenProcessor("ortsanimateddisplay", ()=>{ Add(new CVCAnimatedDisplay(stf, basepath)); })
318+
new STFReader.TokenProcessor("digitalclock", ()=>{ Add(new CVCDigitalClock(stf, basepath)); })
319319
});
320320

321321
//TODO Uncomment when parsed all type

0 commit comments

Comments
 (0)