1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-27 01:31:42 +00:00

Provides an output for some of the extended ROM information.

This commit is contained in:
Thomas Harte 2019-07-20 22:52:57 -04:00
parent b2a6682798
commit 4ffa3c1b49

View File

@ -426,7 +426,11 @@ int main(int argc, char *argv[]) {
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 was needed but not found:" << std::endl;
for(const auto &rom: requested_roms) {
std::cerr << machine_name << '/' << rom.file_name << std::endl;
std::cerr << machine_name << '/' << rom.file_name;
if(!rom.descriptive_name.empty()) {
std::cerr << " (" << rom.descriptive_name << ")";
}
std::cerr << std::endl;
}
break;
}