summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2016-03-20 17:09:13 +0100
committer hap <happppp@users.noreply.github.com>2016-03-20 17:09:13 +0100
commit17eccd74d748d6656e360dd960223fd79ed090ea (patch)
treeb8a7aea979e93426325dda5d16794f2a6936e06c /src/devices/bus
parent3f86b60153c3c8ce55455b71983fd6bf000bc53e (diff)
removed double string in some instances of "Fatal error: Error: x"
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/isa/isa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/isa/isa.cpp b/src/devices/bus/isa/isa.cpp
index 0d8f0c777e1..9b07bdce8e0 100644
--- a/src/devices/bus/isa/isa.cpp
+++ b/src/devices/bus/isa/isa.cpp
@@ -54,7 +54,7 @@ void isa8_slot_device::device_start()
device_isa8_card_interface *dev = dynamic_cast<device_isa8_card_interface *>(get_card_device());
const device_isa16_card_interface *intf;
if (get_card_device()->interface(intf))
- fatalerror("Error ISA16 device in ISA8 slot\n");
+ fatalerror("ISA16 device in ISA8 slot\n");
if (dev) device_isa8_card_interface::static_set_isabus(*dev,m_owner->subdevice(m_isa_tag));
}