fix drive label

This commit is contained in:
Will Scullin 2021-07-09 18:08:26 -07:00
parent 044e28e050
commit d70425461c
No known key found for this signature in database
GPG Key ID: 26DCD1042C6638CD
1 changed files with 1 additions and 1 deletions

View File

@ -861,7 +861,7 @@ export default class DiskII implements Card {
const cur = this.drives[drive - 1];
Object.assign(cur, disk);
this.updateDirty(drive, true);
this.callbacks.label(this.drive, name);
this.callbacks.label(drive, name);
return true;
}