From dba7d6053eea7f45fdc02a8829f8da2957dd1943 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Thu, 31 Aug 2017 10:55:21 +0200 Subject: [PATCH] Clarify elevated permissions warning, insert line break in data files message, fixes #6215 --- src/openrct2/Context.cpp | 2 +- src/openrct2/config/Config.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openrct2/Context.cpp b/src/openrct2/Context.cpp index 7173b669eb..2001a76eed 100644 --- a/src/openrct2/Context.cpp +++ b/src/openrct2/Context.cpp @@ -281,7 +281,7 @@ namespace OpenRCT2 if (platform_process_is_elevated()) { - std::string elevationWarning = "It is not recommended to run OpenRCT2 with elevated permissions."; + std::string elevationWarning = "For security reasons, it is strongly recommended not to run OpenRCT2 with elevated permissions."; if (gOpenRCT2Headless) { Console::Error::WriteLine(elevationWarning.c_str()); diff --git a/src/openrct2/config/Config.cpp b/src/openrct2/config/Config.cpp index 7419360819..558670e04b 100644 --- a/src/openrct2/config/Config.cpp +++ b/src/openrct2/config/Config.cpp @@ -730,7 +730,7 @@ extern "C" while (true) { IUiContext * uiContext = GetContext()->GetUiContext(); - uiContext->ShowMessageBox("OpenRCT2 needs files from the original RollerCoaster Tycoon 2 in order to work. Please select the directory where you installed RollerCoaster Tycoon 2."); + uiContext->ShowMessageBox("OpenRCT2 needs files from the original RollerCoaster Tycoon 2 in order to work. \nPlease select the directory where you installed RollerCoaster Tycoon 2."); std::string installPath = uiContext->ShowDirectoryDialog("Please select your RCT2 directory"); if (installPath.empty())