First item in catalog is OS, use it for disk name

This commit is contained in:
Bradley Bell 2023-10-20 23:34:44 -07:00
parent 2515c3f861
commit 94bf05b57d
1 changed files with 4 additions and 0 deletions

View File

@ -193,6 +193,10 @@ public class RdosFormatDisk extends FormattedDisk {
* RDOS really does not have a disk name. Fake one.
*/
public String getDiskName() {
if (getImageOrder() instanceof ProdosOrder) {
byte[] block = readSector(1, 0x0);
return AppleUtil.getString(block, 0x0, 0x18);
}
byte[] block = readRdosBlock(4);
return AppleUtil.getString(block, 0xe0, 0x20);
}