diff options
author | 2022-08-28 13:23:40 -0400 | |
---|---|---|
committer | 2022-08-28 13:23:40 -0400 | |
commit | f52b402f2416ddfd646afe2d132c16d78c6fe9c3 (patch) | |
tree | adeac9e7f91d2b9392880c963c2834f5f8a8320a /src/devices/imagedev/midiin.cpp | |
parent | 45a99ad00e04549d3febd28723a73bdf1ba4db67 (diff) |
OSD/network interface cleanup
- Move osd_midi_device from osdcore.h to osdepend.h
- Move osd_list_network_adapters from osdcore.h to osdnet.h (was already defineduniquely in osdnet.cpp)
- Move #include <cstdarg> from osdcore.h to emu.h
- Remove dinetwork.h from emu.h
Diffstat (limited to 'src/devices/imagedev/midiin.cpp')
-rw-r--r-- | src/devices/imagedev/midiin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/devices/imagedev/midiin.cpp b/src/devices/imagedev/midiin.cpp index dc15ea3980f..59211d06f88 100644 --- a/src/devices/imagedev/midiin.cpp +++ b/src/devices/imagedev/midiin.cpp @@ -62,6 +62,10 @@ midiin_device::midiin_device(const machine_config &mconfig, const char *tag, dev { } +midiin_device::~midiin_device() +{ +} + ioport_constructor midiin_device::device_input_ports() const { return INPUT_PORTS_NAME(midiin); |