This commit is contained in:
wheremyfoodat 2023-07-09 14:50:22 +03:00
parent b51a1aae5e
commit 36710766c6

View file

@ -2,7 +2,6 @@
#include <climits>
#include <cstdarg>
#include <cstdint>
#include <conio.h>
#include <iostream>
#include <iterator>
#include <sstream>
@ -37,9 +36,9 @@ namespace Helpers {
std::cout << termcolor::on_red << "[FATAL] ";
std::printf(fmt, args...);
std::cout << termcolor::reset << "\n";
std::cout << "Press any button to exit\n";
std::cout << "Press enter to exit\n";
getch();
getchar();
exit(1);
}