Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/vpinball/pinmame
Browse files Browse the repository at this point in the history
  • Loading branch information
toxieainc committed Jan 27, 2024
2 parents c668947 + b59388f commit a157ac7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wpc/s11.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ static WRITE_HANDLER(pia5a_w) { // Not used for DMD
}

static WRITE_HANDLER(pia3a_w) {
if (locals.dispLock) {
if (!locals.deGame && locals.dispLock) {
locals.segments[locals.digSel].b.hi |= locals.pseg[locals.digSel].b.hi = 0;
return;
}
Expand All @@ -430,7 +430,7 @@ static WRITE_HANDLER(pia3a_w) {
locals.dispLock = 1;
}
static WRITE_HANDLER(pia3b_w) {
if (locals.dispLock) {
if (!locals.deGame && locals.dispLock) {
locals.segments[locals.digSel].b.lo |= locals.pseg[locals.digSel].b.lo = 0;
return;
}
Expand Down

0 comments on commit a157ac7

Please sign in to comment.