From 64aa6e7f97ea9461ed5d5795901e427732fb62bd Mon Sep 17 00:00:00 2001 From: IcePixelx <41352111+PixieCore@users.noreply.github.com> Date: Thu, 19 Aug 2021 14:48:31 +0200 Subject: [PATCH] Fixed prints. --- r5dev/src/gameclasses.cpp | 4 ++-- r5launcher/main.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/r5dev/src/gameclasses.cpp b/r5dev/src/gameclasses.cpp index 21f47c22..72d1edf9 100644 --- a/r5dev/src/gameclasses.cpp +++ b/r5dev/src/gameclasses.cpp @@ -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; }; } } diff --git a/r5launcher/main.cpp b/r5launcher/main.cpp index d37d347d..e4230fd8 100644 --- a/r5launcher/main.cpp +++ b/r5launcher/main.cpp @@ -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; }