Merge pull request #104 from erichelgeson/master

Support .hda extension used with RaSCSI or BlueSCSI.
This commit is contained in:
Felix Rieseberg 2021-04-28 10:12:44 -07:00 committed by GitHub
commit bdb1033958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ function isCDImage(filename = '') {
}
function isDiskImage(filename = '') {
return filename.endsWith('.img') || filename.endsWith('.dsk');
return filename.endsWith('.img') || filename.endsWith('.dsk') || filename.endsWith('.hda');
}
function cleanupCopyPath() {