@@ -304,21 +304,29 @@ public static DisplayFrameFormat GetDisplayType(PinMameDisplayType dp)
304
304
{
305
305
switch ( dp ) {
306
306
case PinMameDisplayType . Seg8 : // 7 segments and comma
307
+ case PinMameDisplayType . Seg7SC : // 7 segments, small, with comma
308
+ return DisplayFrameFormat . Segment7Comma ;
307
309
case PinMameDisplayType . Seg8D : // 7 segments and period
308
- case PinMameDisplayType . Seg7 : // 7 segments
310
+ return DisplayFrameFormat . Segment7Dot ;
311
+ case PinMameDisplayType . Seg7 : // 7 segments
312
+ case PinMameDisplayType . Seg7S : // 7 segments, small
313
+ return DisplayFrameFormat . Segment7 ;
309
314
case PinMameDisplayType . Seg87 : // 7 segments, comma every three
315
+ return DisplayFrameFormat . Segment7CommaEvery3 ;
310
316
case PinMameDisplayType . Seg87F : // 7 segments, forced comma every three
311
- case PinMameDisplayType . Seg7S : // 7 segments, small
312
- case PinMameDisplayType . Seg7SC : // 7 segments, small, with comma
313
- return DisplayFrameFormat . Segment7 ;
317
+ return DisplayFrameFormat . Segment7CommaEvery3Forced ;
314
318
315
319
case PinMameDisplayType . Seg10 : // 9 segments and comma
320
+ return DisplayFrameFormat . Segment9Comma ;
316
321
case PinMameDisplayType . Seg9 : // 9 segments
322
+ return DisplayFrameFormat . Segment9 ;
317
323
case PinMameDisplayType . Seg98 : // 9 segments, comma every three
324
+ return DisplayFrameFormat . Segment9CommaEvery3 ;
318
325
case PinMameDisplayType . Seg98F : // 9 segments, forced comma every three
319
- return DisplayFrameFormat . Segment9 ;
326
+ return DisplayFrameFormat . Segment9CommaEvery3Forced ;
320
327
321
328
case PinMameDisplayType . Seg16 : // 16 segments
329
+ return DisplayFrameFormat . Segment16 ;
322
330
case PinMameDisplayType . Seg16R : // 16 segments with comma and period reversed
323
331
case PinMameDisplayType . Seg16N : // 16 segments without commas
324
332
case PinMameDisplayType . Seg16D : // 16 segments with periods only
0 commit comments