Revert line 144 of cli.cpp

This commit is contained in:
Neo 2023-06-06 15:31:31 -07:00
parent 98c8db7e02
commit 726be7da20

View File

@ -142,7 +142,7 @@ int validateCommandLine(Options* options, char *argv[], json *keys) {
for (auto el : (*keys)["Products"].items()) { for (auto el : (*keys)["Products"].items()) {
int id; int id;
sscanf((el.value()["BINK"][0]).get<std::string>().c_str(), "%x", &id); sscanf((el.value()["BINK"][0]).get<std::string>().c_str(), "%x", &id);
fmt::print("{}: {}\n", el.key(), el.value()["BINK"]); std::cout << el.key() << ": " << el.value()["BINK"] << std::endl;
} }
fmt::print("\n\n"); fmt::print("\n\n");