mirror of
https://github.com/simh/simh.git
synced 2026-01-13 07:19:43 +00:00
Fixed compiler issue when compiling with MinGW.
This commit is contained in:
parent
9afeef6f10
commit
eb7e3b8159
@ -340,7 +340,7 @@ t_stat emit_conout_character (int ch)
|
||||
return map_conout_character(ch);
|
||||
}
|
||||
|
||||
static void Beep (void) /* notify user keyboard was locked or key was bad */
|
||||
static void SendBeep (void) /* notify user keyboard was locked or key was bad */
|
||||
{
|
||||
sim_putchar(7);
|
||||
}
|
||||
@ -395,7 +395,7 @@ static t_stat tti_svc (UNIT *uptr)
|
||||
}
|
||||
|
||||
if ((tti_unit.flags & KEYBOARD_LOCKED) || ! (tti_dsw & TT_DSW_KEYBOARD_BUSY)) {
|
||||
Beep();
|
||||
SendBeep();
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
||||
@ -403,7 +403,7 @@ static t_stat tti_svc (UNIT *uptr)
|
||||
temp = ascii_to_conin[temp];
|
||||
|
||||
if (temp == 0) { /* ignore invalid characters */
|
||||
Beep();
|
||||
SendBeep();
|
||||
calc_ints();
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user