Comment update

This commit is contained in:
Uwe Seimet 2022-02-28 09:28:32 +01:00
parent dcb1f7c093
commit 46305d7f48

View File

@ -193,7 +193,7 @@ int PrimaryDevice::RequestSense(const DWORD *cdb, BYTE *buf)
int size = (int)cdb[4];
assert(size >= 0 && size < 0x100);
// For SCSI-1, transfer 4 bytes when the size is 0
// Transfer 4 bytes when size 0 (Shugart Associates System Interface specification)
if (size == 0) {
size = 4;
}