From a1e6b963d435f7d26f78d18df206c7f668ac555d Mon Sep 17 00:00:00 2001 From: tobid7 Date: Sun, 10 Mar 2024 07:39:19 +0100 Subject: [PATCH] fix wrong-name error --- source/helper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/helper.cpp b/source/helper.cpp index 93efbe4..134a556 100644 --- a/source/helper.cpp +++ b/source/helper.cpp @@ -464,11 +464,11 @@ void CompileProject(NpiProject &prj, std::string dir_) std::string res_f = dir_ + "/build/" + fix_path(it.stem().stem().string()) + ".shbin "; std::string command = dkp_env + "/tools/bin/picasso -o " + res_f + fix_path(it.string()); - std::cout << CCMAGENTA << "Generating: " << CCCYAN << fix_path(it.filename().string()) + std::cout << CCMAGENTA << "Generating: " << CCCYAN << res_f << std::endl; int reqres = system(command.c_str()); std::cout << (reqres == 0 ? CCGREEN : CCRED) - << (reqres == 0 ? "[+] " : "[-] ") << fix_path(it.filename().string()) + << (reqres == 0 ? "[+] " : "[-] ") << res_f << std::endl; if (reqres != 0) any_errors = true;