Fixed prints.

This commit is contained in:
IcePixelx 2021-08-19 14:48:31 +02:00
parent bb4b4d7636
commit 64aa6e7f97
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ namespace GameGlobals
}
catch (std::exception& e)
{
std::cout << " [+CGameConsole+] Please don't input a character that isn't a number into cgameconsole :(." << e.what() << std::endl;
std::cout << " [+CGameConsole+] Please don't input a character that isn't a number into cgameconsole :(. Error: " << e.what() << std::endl;
}
}
@ -50,7 +50,7 @@ namespace GameGlobals
}
catch (std::exception& e)
{
std::cout << " [+CCompanion+] Please don't input a character that isn't a number into ccompanion :(." << e.what() << std::endl;
std::cout << " [+CCompanion+] Please don't input a character that isn't a number into ccompanion :(. Error: " << e.what() << std::endl;
};
}
}

View File

@ -242,7 +242,7 @@ int main(int argc, char* argv[], char* envp[])
}
catch (std::exception& e)
{
std::cout << "R5 Reloaded asked for a number and not a letter or anything of that sort :(." << e.what() << std::endl;
std::cout << "R5 Reloaded asked for a number and not a letter or anything of that sort :(. Error: " << e.what() << std::endl;
Sleep(5000);
return EXIT_FAILURE;
}