Support .hda extension used with RaSCSI or BlueSCSI.

This commit is contained in:
Eric Helgeson 2021-03-29 10:55:09 -05:00
parent e3c6d96785
commit 6c1ffff0e0
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() {