From 7d292112b05bcfabd1329ca2f9b889a9dd5cba90 Mon Sep 17 00:00:00 2001 From: MooglyGuy Date: Fri, 17 Mar 2017 03:20:51 +0100 Subject: intvkbd: Fix Coverity CID159973, Structurally dead code. Was an obvious copy-paste error. (nw) --- src/mame/machine/intv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3