Skip to content

Commit

Permalink
drive names start at 1
Browse files Browse the repository at this point in the history
  • Loading branch information
sh95014 committed Dec 22, 2023
1 parent 4fff16d commit 98f07d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/frontends/mariani/AppDelegate.mm
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ - (void)openDiskImage:(id)sender {
self.diskOpenPanel.canChooseDirectories = NO;
self.diskOpenPanel.allowsMultipleSelection = NO;
self.diskOpenPanel.canDownloadUbiquitousContents = YES;
self.diskOpenPanel.message = [NSString stringWithFormat:NSLocalizedString(@"Select disk image for slot %d drive %d", @"slot, drive"), slot, drive];
self.diskOpenPanel.message = [NSString stringWithFormat:NSLocalizedString(@"Select disk image for slot %d drive %d", @"slot, drive"), slot, drive + 1];
self.diskOpenPanel.prompt = NSLocalizedString(@"Insert", @"..into drive");
self.diskOpenPanel.delegate = self;

Expand Down

0 comments on commit 98f07d7

Please sign in to comment.