mirror of
https://github.com/holub/mame
synced 2025-10-05 16:50:57 +03:00
coco: Changed display of "Becker Port" info to show in -verbose only to avoid causal user confusion. (nw)
This commit is contained in:
parent
370a880f9b
commit
69c65dc4e6
@ -89,17 +89,17 @@ void beckerport_device::device_start(void)
|
|||||||
/* format address string for opening the port */
|
/* format address string for opening the port */
|
||||||
snprintf(chAddress, sizeof(chAddress), "socket.%s:%d", m_hostname, m_dwtcpport);
|
snprintf(chAddress, sizeof(chAddress), "socket.%s:%d", m_hostname, m_dwtcpport);
|
||||||
|
|
||||||
fprintf(stderr, "Connecting to Drivewire server on %s:%d... ", m_hostname, m_dwtcpport);
|
osd_printf_verbose("Connecting to Drivewire server on %s:%d... ", m_hostname, m_dwtcpport);
|
||||||
|
|
||||||
UINT64 filesize; // unused
|
UINT64 filesize; // unused
|
||||||
file_error filerr = osd_open(chAddress, 0, &m_pSocket, &filesize);
|
file_error filerr = osd_open(chAddress, 0, &m_pSocket, &filesize);
|
||||||
if (filerr != FILERR_NONE)
|
if (filerr != FILERR_NONE)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Error: osd_open returned error %i!\n", (int) filerr);
|
osd_printf_verbose("Error: osd_open returned error %i!\n", (int) filerr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(stderr, "Connected!\n");
|
osd_printf_verbose("Connected!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*-------------------------------------------------
|
/*-------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user