Skip to content

Commit

Permalink
tube: fix merge failure in 1b332eb
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Fosdick committed Sep 19, 2019
1 parent b377866 commit aba1558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tube.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void tube_updateints()
if ((tubeula.r1stat & 1) && (tubeula.hstat[3] & 128))
interrupt |= 8;

if (((tubeula.r1stat & 2) && (tubeula.pstat[0] & 128)) || ((tubeula.r1stat & 4) && (tubeula.pstat[3] & 128)))
if (((tubeula.r1stat & 2) && (tubeula.pstat[0] & 128)) || ((tubeula.r1stat & 4) && (tubeula.pstat[3] & 128))) {
new_irq |= 1;
if (!(tube_irq & 1))
log_debug("tube: parasite IRQ asserted");
Expand Down

0 comments on commit aba1558

Please sign in to comment.