Add command line: '-sN diskii13' to force the diskii card (in slot-N) to use the 13-sector firmware (#1133)

This commit is contained in:
tomcw
2022-10-05 21:29:57 +01:00
parent 259472a877
commit 69fa53ab7d
5 changed files with 29 additions and 1 deletions

View File

@@ -167,6 +167,11 @@ bool ProcessCmdLine(LPSTR lpCmdLine)
g_cmdLine.bSlotEmpty[slot] = true;
if (strcmp(lpCmdLine, "diskii") == 0)
g_cmdLine.slotInsert[slot] = CT_Disk2;
if (strcmp(lpCmdLine, "diskii13") == 0)
{
g_cmdLine.slotInsert[slot] = CT_Disk2;
g_cmdLine.slotInfo[slot].isDiskII13 = true;
}
if (strcmp(lpCmdLine, "parallel") == 0)
{
if (slot == SLOT1)