display full absolute paths of input and output

This commit is contained in:
Jonathan 2023-07-22 23:04:31 -04:00
parent 7c9e16a7ec
commit 3dde7a60d9
1 changed files with 2 additions and 2 deletions

View File

@ -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");