1
0
mirror of https://github.com/simh/simh.git synced 2026-01-30 21:32:27 +00:00

SCP: Removed redundant SCPE_NOTATT which duplicates SCPE_UNATT

This commit is contained in:
Mark Pizzolato
2019-02-01 16:07:12 -08:00
parent 0869cef132
commit 75d18d4db0
6 changed files with 18 additions and 19 deletions

View File

@@ -832,7 +832,7 @@ static t_stat deck_split_cmd(CONST char *cptr)
if (uptr == NULL) /* valid unit? */
return SCPE_NXUN;
if ((uptr->flags & UNIT_ATT) == 0) /* attached? */
return SCPE_NOTATT;
return SCPE_UNATT;
// get the file name
strcpy(fn0, uptr->filename);
sim_card_detach(uptr); // detach file from cdp device to be splitted