Removed minimum image size check. There is no such limit for SCSI drives. (#130) [Issue #72]

This fixes issue #72
This commit is contained in:
uweseimet 2021-07-16 02:51:34 +02:00 committed by GitHub
parent fef21a6cf5
commit f3978e6bd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,10 +74,6 @@ BOOL FASTCALL SCSIHD::Open(const Filepath& path, BOOL /*attn*/)
return FALSE;
}
// 10MB or more
if (size < 0x9f5400) {
return FALSE;
}
// 2TB according to xm6i
// There is a similar one in wxw/wxw_cfg.cpp
if (size > 2LL * 1024 * 1024 * 1024 * 1024) {