Change the default hard disk image format to fixed-size VHD.

This commit is contained in:
OBattler
2024-02-23 17:35:54 +01:00
parent 2e482bf560
commit 25203be56a

View File

@@ -55,7 +55,9 @@ private:
QStringList filters;
// "Dynamic-size VHD" is number 4 in the `filters` list and the
// comboBoxFormat model
const uint8_t DEFAULT_DISK_FORMAT = 4;
// Temporary change to fixed-size VHD due to MiniVHD's handling of
// dynamic-size VHD being buggy.
const uint8_t DEFAULT_DISK_FORMAT = 3;
bool checkAndAdjustCylinders();
bool checkAndAdjustHeads();