make default board "PC" if no board is specified

"none" for pc32 and pc64 is too confusing
This commit is contained in:
Dmitry Degtyarev 2020-10-03 21:00:59 +04:00
parent eff9132f3f
commit 34575c0a1f

View File

@ -277,7 +277,7 @@ void ReleaseManager::loadReleaseImages(const QString &fileContents) {
}
// NOTE: yml file doesn't define "board" for pc32/pc64
QString board = "none";
QString board = "PC";
if (e["board"]) {
board = ymlToQString(e["board"]);
}