1
0
Fork 0

Add AUTOTYPE to DOSBox's programs

This commit is contained in:
krcroft 2020-04-03 21:11:12 -07:00 committed by Patryk Obara
parent f243f585ed
commit d09f6ae665

View file

@ -86,7 +86,7 @@ void AUTOTYPE::PrintKeys()
auto name = names.begin();
for (size_t row = 0; row < rows; ++row) {
for (size_t i = row; i < names.size(); i += rows)
WriteOut(" %-*s", max_length, name[i].c_str());
WriteOut(" %-*s", static_cast<int>(max_length), name[i].c_str());
WriteOut_NoParsing("\n");
}
}