From b30b44ab7eac22a35502670e6df0407ec0bcd59b Mon Sep 17 00:00:00 2001 From: Kelsi Date: Wed, 6 May 2026 02:45:23 -0700 Subject: [PATCH] chore(cli): --convert-m2 reports WOM version + batch count in success message --- tools/editor/main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/editor/main.cpp b/tools/editor/main.cpp index 9375a0e2..26b02e77 100644 --- a/tools/editor/main.cpp +++ b/tools/editor/main.cpp @@ -72,8 +72,9 @@ int main(int argc, char* argv[]) { auto dot = outPath.rfind('.'); if (dot != std::string::npos) outPath = outPath.substr(0, dot); wowee::pipeline::WoweeModelLoader::save(wom, "output/models/" + outPath); - std::printf("OK: output/models/%s.wom (%zu verts, %zu bones)\n", - outPath.c_str(), wom.vertices.size(), wom.bones.size()); + std::printf("OK: output/models/%s.wom (v%u, %zu verts, %zu bones, %zu batches)\n", + outPath.c_str(), wom.version, wom.vertices.size(), + wom.bones.size(), wom.batches.size()); } else { std::fprintf(stderr, "FAILED: %s\n", m2Path.c_str()); am.shutdown();