diff --git a/include/helpers.hpp b/include/helpers.hpp index 1240232f..0a456b9a 100644 --- a/include/helpers.hpp +++ b/include/helpers.hpp @@ -2,7 +2,6 @@ #include #include #include -#include #include #include #include @@ -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); }