1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Minor grammar fix.

This commit is contained in:
Thomas Harte 2019-03-02 17:31:11 -05:00
parent 6a55d75b3d
commit 47dd8ad069

View File

@ -424,7 +424,7 @@ int main(int argc, char *argv[]) {
default: break;
case ::Machine::Error::MissingROM:
std::cerr << "Could not find system ROMs; please install to /usr/local/share/CLK/ or /usr/share/CLK/, or provide a --rompath." << std::endl;
std::cerr << "One or more of the following were needed but not found:" << std::endl;
std::cerr << "One or more of the following was needed but not found:" << std::endl;
for(const auto &name: rom_names) {
std::cerr << machine_name << '/' << name << std::endl;
}