mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fixed prints.
This commit is contained in:
parent
bb4b4d7636
commit
64aa6e7f97
@ -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;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user