mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 17:22:25 -05:00
Modem: Respond to % escaped commands, fixes Windows autodetection taking a long time
This commit is contained in:
parent
b418b0d186
commit
09ba9a1fb2
1 changed files with 4 additions and 0 deletions
|
@ -1091,6 +1091,10 @@ modem_do_command(modem_t *modem, int repeat)
|
|||
}
|
||||
break;
|
||||
}
|
||||
case '%': // % escaped commands
|
||||
// Windows 98 modem prober sends unknown command AT%V
|
||||
modem_send_res(modem, ResERROR);
|
||||
return;
|
||||
case '\0':
|
||||
modem_send_res(modem, ResOK);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue