ソースを参照

Only tell the user if action is needed.

Eric Helgeson 2 年 前
コミット
03cbd7461e
1 ファイル変更1 行追加5 行削除
  1. 1 5
      src/BlueSCSI_disk.cpp

+ 1 - 5
src/BlueSCSI_disk.cpp

@@ -742,11 +742,7 @@ bool scsiDiskOpenHDDImage(int target_idx, const char *filename, int scsi_id, int
         {
             // ROM is always contiguous, no need to log
         }
-        else if (img.file.contiguousRange(&sector_begin, &sector_end))
-        {
-            log("---- Image file is contiguous, SD card sectors ", (int)sector_begin, " to ", (int)sector_end);
-        }
-        else
+        else if (!img.file.contiguousRange(&sector_begin, &sector_end))
         {
             log("---- WARNING: file ", filename, " is not contiguous. This will increase read latency.");
         }