[nostalgia/tools/pack] Fix error message for missing rom-bin path

This commit is contained in:
Gary Talent 2022-12-01 02:01:07 -06:00
parent 5be8ed533e
commit d68d8531e9

View File

@ -50,7 +50,7 @@ static ox::Error run(const ox::ClArgs &args) noexcept {
return OxError(1, "must specify a source directory");
}
if (argRomBin == "") {
oxErr("\033[31;1;1merror:\033[0m must specify a path for preload file\n");
oxErr("\033[31;1;1merror:\033[0m must specify a path for ROM file\n");
return OxError(1, "must specify a path for preload file");
}
ox::Buffer dstBuff(32 * ox::units::MB);