intvkbd: Fix Coverity CID159973, Structurally dead code. Was an obvious copy-paste error. (nw)

This commit is contained in:
MooglyGuy 2017-03-17 03:20:51 +01:00
parent cd67b1ad03
commit 7d292112b0

View File

@ -217,8 +217,8 @@ WRITE8_MEMBER( intv_state::intvkbd_io_w )
// If write mode:
// 0=Write Channel B data, 1 = Record Channel B Audio
tape_drive.channel_select = (data & 1);
case 0x027:
break;
case 0x027:
// "Tape Drive Control: Erase"
tape_drive.erase = (data & 1);
break;