Skip to content

Commit 31a867d

Browse files
committed
dosbox .hdd: missed couple places
1 parent 302983b commit 31a867d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/BizHawk.Client.EmuHawk/MainForm.VSystem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ private void Ti83PaletteMenuItem_Click(object sender, EventArgs e)
981981
if (result.IsOk()) AddOnScreenMessage("Palette settings saved");
982982
}
983983

984-
private static readonly FilesystemFilterSet DOSBoxHDDImageFilterSet = new(new FilesystemFilter("DOSBox HDD Images", new[] { "bin" }))
984+
private static readonly FilesystemFilterSet DOSBoxHDDImageFilterSet = new(new FilesystemFilter("DOSBox HDD Images", new[] { "hdd" }))
985985
{
986986
AppendAllFilesEntry = false,
987987
};

src/BizHawk.Emulation.Cores/Computers/DOS/DOSBox.ISettable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ public class SyncSettings
268268
public float MouseSensitivity { get; set; }
269269

270270
[DisplayName("Mount Formatted Hard Disk Drive")]
271-
[Description("Determines whether to mount an empty writable formatted hard disk in drive C:. The hard disk will be fully located in memory so make sure you have enough RAM available. Its contents can be exported to the host filesystem.\n\nThis value will be ignored if a hard disk image (.bin) is provided.")]
271+
[Description("Determines whether to mount an empty writable formatted hard disk in drive C:. The hard disk will be fully located in memory so make sure you have enough RAM available. Its contents can be exported to the host filesystem.\n\nThis value will be ignored if a hard disk image (.hdd) is provided.")]
272272
[DefaultValue(HardDiskOptions.None)]
273273
[TypeConverter(typeof(DescribableEnumConverter))]
274274
public HardDiskOptions FormattedHardDisk { get; set; }

0 commit comments

Comments
 (0)