[Helpers] Fix oopsie

This commit is contained in:
wheremyfoodat 2022-11-18 00:07:14 +02:00
parent 70a492fa03
commit 7547159a48

View file

@ -23,21 +23,18 @@ namespace Helpers {
va_start(args, fmt);
std::cout << termcolor::on_red << "[FATAL] ";
std::vprintf (fmt, args);
std::cout << termcolor::reset;
std::cout << std::endl;
std::cout << termcolor::reset << "\n";
va_end(args);
exit(1);
}
static void warn(const char* fmt, ...) {
return;
std::va_list args;
va_start(args, fmt);
std::cout << termcolor::on_red << "[Warning] ";
std::vprintf (fmt, args);
std::cout << termcolor::reset;
std::cout << "\n";
std::cout << termcolor::reset << "\n";
va_end(args);
}