Skip to content

Commit

Permalink
ZuluSCSI_disk: clean up formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
reinauer committed Oct 22, 2023
1 parent b04ea40 commit 162426c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ZuluSCSI_disk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ static void setDefaultDriveInfo(int target_idx)
switch (img.deviceType)
{
case S2S_CFG_FIXED: driveinfo = apl_driveinfo_fixed; break;
case S2S_CFG_REMOVABLE: driveinfo = apl_driveinfo_removable; break;
case S2S_CFG_REMOVABLE: driveinfo = apl_driveinfo_removable; break;
case S2S_CFG_OPTICAL: driveinfo = apl_driveinfo_optical; break;
case S2S_CFG_FLOPPY_14MB: driveinfo = apl_driveinfo_floppy; break;
case S2S_CFG_MO: driveinfo = apl_driveinfo_magopt; break;
Expand All @@ -310,12 +310,12 @@ static void setDefaultDriveInfo(int target_idx)
switch (img.deviceType)
{
case S2S_CFG_FIXED: driveinfo = driveinfo_fixed; break;
case S2S_CFG_REMOVABLE: driveinfo = driveinfo_removable; break;
case S2S_CFG_REMOVABLE: driveinfo = driveinfo_removable; break;
case S2S_CFG_OPTICAL: driveinfo = driveinfo_optical; break;
case S2S_CFG_FLOPPY_14MB: driveinfo = driveinfo_floppy; break;
case S2S_CFG_MO: driveinfo = driveinfo_magopt; break;
case S2S_CFG_SEQUENTIAL: driveinfo = driveinfo_tape; break;
case S2S_CFG_NETWORK: driveinfo = driveinfo_network; break;
case S2S_CFG_SEQUENTIAL: driveinfo = driveinfo_tape; break;
default: driveinfo = driveinfo_fixed; break;
}
}
Expand Down

0 comments on commit 162426c

Please sign in to comment.