summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author MooglyGuy <therealmogminer@gmail.com>2017-03-17 03:20:51 +0100
committer MooglyGuy <therealmogminer@gmail.com>2017-03-17 03:20:51 +0100
commit7d292112b05bcfabd1329ca2f9b889a9dd5cba90 (patch)
tree198bbb4faab46e44ee764aafddbe913c374b6f84
parentcd67b1ad03f5b6754d42f85ebc867d224072934a (diff)
intvkbd: Fix Coverity CID159973, Structurally dead code. Was an obvious copy-paste error. (nw)
-rw-r--r--src/mame/machine/intv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/intv.cpp b/src/mame/machine/intv.cpp
index ddaa99975ec..68c3d2bf78f 100644
--- a/src/mame/machine/intv.cpp
+++ b/src/mame/machine/intv.cpp
@@ -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;