summaryrefslogtreecommitdiffstats
path: root/src/devices/imagedev/midiin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/midiin.cpp')
-rw-r--r--src/devices/imagedev/midiin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/imagedev/midiin.cpp b/src/devices/imagedev/midiin.cpp
index 3b05a9c90ad..b4c556760db 100644
--- a/src/devices/imagedev/midiin.cpp
+++ b/src/devices/imagedev/midiin.cpp
@@ -22,7 +22,7 @@ const device_type MIDIIN = &device_creator<midiin_device>;
ctor
-------------------------------------------------*/
-midiin_device::midiin_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+midiin_device::midiin_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, MIDIIN, "MIDI In image device", tag, owner, clock, "midiin", __FILE__),
device_image_interface(mconfig, *this),
device_serial_interface(mconfig, *this),
@@ -78,7 +78,7 @@ void midiin_device::device_timer(emu_timer &timer, device_timer_id id, int param
return;
}
- UINT8 buf[8192*4];
+ uint8_t buf[8192*4];
int bytesRead;
if (m_midi == nullptr) {
@@ -158,7 +158,7 @@ void midiin_device::tra_callback()
m_input_cb(bit);
}
-void midiin_device::xmit_char(UINT8 data)
+void midiin_device::xmit_char(uint8_t data)
{
// printf("MIDI in: xmit %02x\n", data);