@@ -24,11 +24,11 @@ namespace VisualPinball.Engine.PinMAME.Games
24
24
[ Serializable ]
25
25
public class Terminator2 : Wpc
26
26
{
27
- public override string Name { get ; } = "Terminator 2: Judgment Day" ;
28
- public override string Id { get ; } = "t2" ;
29
- public override int Year { get ; } = 1991 ;
30
- public override string Manufacturer { get ; } = "Williams" ;
31
- public override int IpdbId { get ; } = 2524 ;
27
+ public override string Name => "Terminator 2: Judgment Day" ;
28
+ public override string Id => "t2" ;
29
+ public override int Year => 1991 ;
30
+ public override string Manufacturer => "Williams" ;
31
+ public override int IpdbId => 2524 ;
32
32
public override PinMameRom [ ] Roms { get ; } = {
33
33
new PinMameRom ( "t2_l2" , "L-2" ) ,
34
34
new PinMameRom ( "t2_l3" , "L-3" ) ,
@@ -172,7 +172,13 @@ public class Terminator2 : Wpc
172
172
new GamelogicEngineLamp ( "85" ) { Description = "Drop Target" } ,
173
173
new GamelogicEngineLamp ( "86" ) { Description = "Top Lane Left" } ,
174
174
new GamelogicEngineLamp ( "87" ) { Description = "Top Lane Center" } ,
175
- new GamelogicEngineLamp ( "88" ) { Description = "Top Lane Right" }
175
+ new GamelogicEngineLamp ( "88" ) { Description = "Top Lane Right" } ,
176
+
177
+ new GamelogicEngineLamp ( "0" ) { Description = "GI: Top Insert" , Source = LampSource . GI } ,
178
+ new GamelogicEngineLamp ( "1" ) { Description = "GI: Bottom Insert" , Source = LampSource . GI } ,
179
+ new GamelogicEngineLamp ( "2" ) { Description = "GI: Right Playfield" , Source = LampSource . GI } ,
180
+ new GamelogicEngineLamp ( "3" ) { Description = "GI: CPU String" , Source = LampSource . GI } ,
181
+ new GamelogicEngineLamp ( "4" ) { Description = "GI: Left Playfield" , Source = LampSource . GI } ,
176
182
} ;
177
183
178
184
protected override GamelogicEngineCoil [ ] GameCoils { get ; } = {
0 commit comments