Bladeren bron

Change ini key names and log wording

Morio 2 jaren geleden
bovenliggende
commit
c7fe329cfb
2 gewijzigde bestanden met toevoegingen van 5 en 5 verwijderingen
  1. 3 3
      src/ZuluSCSI_disk.cpp
  2. 2 2
      zuluscsi.ini

+ 3 - 3
src/ZuluSCSI_disk.cpp

@@ -178,13 +178,13 @@ bool scsiDiskActivateRomDrive()
         return false;
     }
 
-    if (ini_getbool("SCSI", "DisableROM", 0, CONFIGFILE))
+    if (ini_getbool("SCSI", "DisableROMDrive", 0, CONFIGFILE))
     {
-        azlog("---- ROM disabled in ini file, not enabling");
+        azlog("---- ROM drive disabled in ini file, not enabling");
         return false;
     }
 
-    long rom_scsi_id = ini_getl("SCSI", "ROMSetSCSIID", -1, CONFIGFILE);
+    long rom_scsi_id = ini_getl("SCSI", "ROMDriveSCSIID", -1, CONFIGFILE);
     if (rom_scsi_id >= 0 && rom_scsi_id <= 7)
     {
         hdr.scsi_id = rom_scsi_id;

+ 2 - 2
zuluscsi.ini

@@ -15,8 +15,8 @@ MapLunsToIDs = 0 # For Philips P2000C simulate multiple LUNs
 MaxSyncSpeed = 10 # Set to 5 or 10 to enable synchronous SCSI mode, 0 to disable
 
 # ROM settings
-#DisableROM = 1 # Disable the ROM if it has been loaded to Flash
-#ROMSetSCSIID = 7 # Override ROM's SCSI ID, set to -1 or do not include to use ROM's orignal ID
+#DisableROMDrive = 1 # Disable the ROM drive if it has been loaded to flash
+#ROMDriveSCSIID = 7 # Override ROM drive's SCSI ID
 
 # Settings that can be specified either per-device or for all devices.
 #Vendor = "QUANTUM"