summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/cs8900a.cpp
diff options
context:
space:
mode:
author tedgreen99 <tedgreen99@users.noreply.github.com>2022-05-12 21:08:25 -0600
committer GitHub <noreply@github.com>2022-05-12 23:08:25 -0400
commitbdc0d0dea1f4113bca2ce5162dc044a026b43b58 (patch)
tree56a9d28dfb3c8996a82924a96d2bf0cfdfb129db /src/devices/machine/cs8900a.cpp
parent4bb59254f62104ce39fadd9298b0b902eef79476 (diff)
dinetwork: Add mtu paramter and remove unnecessary floating point calculations (#9742)
Diffstat (limited to 'src/devices/machine/cs8900a.cpp')
-rw-r--r--src/devices/machine/cs8900a.cpp2
1 files changed, 1 insertions, 1 deletions
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) */