From 3dde7a60d987b38952f35e57fe679cfaf68beed3 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Sat, 22 Jul 2023 23:04:31 -0400 Subject: [PATCH] display full absolute paths of input and output --- qbsp/qbsp.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qbsp/qbsp.cc b/qbsp/qbsp.cc index af308c33..d2109512 100644 --- a/qbsp/qbsp.cc +++ b/qbsp/qbsp.cc @@ -1697,8 +1697,8 @@ void InitQBSP(int argc, const char **argv) remove(qbsp_options.bsp_path); // Probably not the best place to do this - logging::print("Input file: {}\n", qbsp_options.map_path); - logging::print("Output file: {}\n\n", qbsp_options.bsp_path); + logging::print("Input file: {}\n", fs::absolute(qbsp_options.map_path)); + logging::print("Output file: {}\n\n", fs::absolute(qbsp_options.bsp_path)); fs::path prtfile = qbsp_options.bsp_path; prtfile.replace_extension("prt");