Skip to content

Commit

Permalink
fix Algar, Alien Poker and 7 digit variants of Firepower
Browse files Browse the repository at this point in the history
  • Loading branch information
toxieainc committed Nov 26, 2023
1 parent f4d9db7 commit 3a9c019
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/wpc/dmddevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,11 @@ layout_t layoutAlphanumericFrame(UINT64 gen, UINT16* seg_data, UINT16* seg_data_
case GEN_S4:
case GEN_S6:
layout = __2x6Num_2x6Num_4x1Num;
if ((strncasecmp(GameName, "algar", 5) == 0) || // Sys6A with 7 digit displays
(strncasecmp(GameName, "alpok", 5) == 0) ||
(strncasecmp(GameName, "frpwr_b6", 8) == 0) ||
(strncasecmp(GameName, "frpwr_c6", 8) == 0))
layout = __2x7Num_2x7Num_4x1Num_gen7;
break;
case GEN_S7:
//__2x7Num_4x1Num_1x16Alpha; //!! hmm i did this for a reason??
Expand Down

0 comments on commit 3a9c019

Please sign in to comment.