From bdc0d0dea1f4113bca2ce5162dc044a026b43b58 Mon Sep 17 00:00:00 2001 From: tedgreen99 Date: Thu, 12 May 2022 21:08:25 -0600 Subject: dinetwork: Add mtu paramter and remove unnecessary floating point calculations (#9742) --- src/devices/machine/cs8900a.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/devices/machine/cs8900a.cpp') diff --git a/src/devices/machine/cs8900a.cpp b/src/devices/machine/cs8900a.cpp index 6f6535150f7..52e0808bb01 100644 --- a/src/devices/machine/cs8900a.cpp +++ b/src/devices/machine/cs8900a.cpp @@ -377,7 +377,7 @@ void cs8900a_device::device_start() cs8900a_device::cs8900a_device(const machine_config& mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, type, tag, owner, clock) - , device_network_interface(mconfig, *this, 10.0f) + , device_network_interface(mconfig, *this, 10) , cs8900_ia_mac{0, 0, 0, 0, 0, 0} , cs8900_packetpage_ptr(0) , cs8900_recv_control(0) /* copy of CC_RXCTL (contains all bits below) */ -- cgit v1.2.3