0.8.6 release.

This commit is contained in:
srs5694
2013-01-09 12:55:40 -05:00
parent d8eed46294
commit 0741fa21ac
16 changed files with 131 additions and 86 deletions

View File

@@ -277,13 +277,13 @@ void GPTPart::ChangeType(void) {
cout << "Current type is '" << GetTypeName() << "'\n";
do {
cout << "Hex code or GUID (L to show codes, Enter = " << hex << DEFAULT_TYPE << dec << "): ";
cout << "Hex code or GUID (L to show codes, Enter = " << hex << DEFAULT_GPT_TYPE << dec << "): ";
line = ReadString();
if ((line[0] == 'L') || (line[0] == 'l')) {
partitionType.ShowAllTypes();
} else {
if (line.length() == 0)
tempType= DEFAULT_TYPE;
tempType = DEFAULT_GPT_TYPE;
else
tempType = line;
} // if/else