summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-01-26 08:47:06 -0500
committer AJR <ajrhacker@users.noreply.github.com>2022-01-26 08:56:03 -0500
commitca79d71af4bca7c1b8acc1df9e5dbb5b987d1542 (patch)
tree42994b1dd615273baa3e656b569ccd478270aff3 /src/osd
parentba918b59faad5244d87078ab3b955f64fd803c4d (diff)
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/osd')
-rw-r--r--src/osd/osdnet.cpp2
-rw-r--r--src/osd/osdnet.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/osdnet.cpp b/src/osd/osdnet.cpp
index b90a139731c..97b37366a4d 100644
--- a/src/osd/osdnet.cpp
+++ b/src/osd/osdnet.cpp
@@ -61,7 +61,7 @@ int osd_netdev::send(uint8_t *buf, int len)
return 0;
}
-void osd_netdev::recv(void *ptr, int param)
+void osd_netdev::recv(int param)
{
uint8_t *buf;
int len;
diff --git a/src/osd/osdnet.h b/src/osd/osdnet.h
index 32e41663dcc..f18d7c5fea7 100644
--- a/src/osd/osdnet.h
+++ b/src/osd/osdnet.h
@@ -44,7 +44,7 @@ protected:
virtual int recv_dev(uint8_t **buf);
private:
- void recv(void *ptr, int param);
+ void recv(int param);
class device_network_interface *m_dev;
emu_timer *m_timer;