[nostalgia/tools/pack] Improve output and fix a sign conversion

This commit is contained in:
2022-12-01 00:15:37 -06:00
parent 8329bf9217
commit 0e0f43895a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -69,8 +69,8 @@ static ox::Error run(const ox::ClArgs &args) noexcept {
oxRequireM(romBuff, readFileBuff(argRomBin.c_str()));
oxReturnError(appendBinary(&romBuff, &dstBuff, pl.get()));
oxOutf("new size: {} bytes\n", dstSize);
oxOutf("preload buff size: {} bytes\n", pl->buff().size());
oxOutf("Dest FS size: {} bytes\n", dstSize);
oxOutf("Preload buff size: {} bytes\n", pl->buff().size());
oxOutf("ROM buff size: {} bytes\n", romBuff.size());
oxReturnError(writeFileBuff(argRomBin, romBuff));