diff options
| author | 2023-09-19 17:33:49 -0400 | |
|---|---|---|
| committer | 2023-09-19 17:33:49 -0400 | |
| commit | f32bb79e8541ba96d3a8144b220c48fb7536ba4b (patch) | |
| tree | 0f8af1a416aa560598961ebda928d34b133c0bfa /src/devices/machine/cs8900a.cpp | |
| parent | 8e838e96c6810d81939a20dd45d7bfccc34044ef (diff) | |
Change parameter type for device_network_interface::set_mac from char * to u8 *
Diffstat (limited to 'src/devices/machine/cs8900a.cpp')
| -rw-r--r-- | src/devices/machine/cs8900a.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/cs8900a.cpp b/src/devices/machine/cs8900a.cpp index 92df2892ddc..b91957c29b2 100644 --- a/src/devices/machine/cs8900a.cpp +++ b/src/devices/machine/cs8900a.cpp @@ -923,7 +923,7 @@ void cs8900a_device::cs8900_sideeffects_write_pp(u16 ppaddress, int odd_address) /* the MAC address has been changed */ cs8900_ia_mac[ppaddress - CS8900_PP_ADDR_MAC_ADDR + odd_address] = GET_PP_8(ppaddress + odd_address); - set_mac((char *)cs8900_ia_mac); + set_mac(cs8900_ia_mac); if (odd_address && (ppaddress == CS8900_PP_ADDR_MAC_ADDR + 4)) LOGMASKED(CS8900_DEBUG, "set MAC address: %02x:%02x:%02x:%02x:%02x:%02x", |
