From b378d4a671ce9f066f5c27f117c8f3d9e980da1f Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Sat, 12 Jun 2021 01:53:48 -0400 Subject: [PATCH] Use app name for splash startup --- indra/newview/llappviewer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index fe3980e4850..c062f46e4d1 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2827,7 +2827,7 @@ bool LLAppViewer::initConfiguration() // crash as this dialog is always frontmost. std::string splash_msg; LLStringUtil::format_map_t args; - args["[APP_NAME]"] = LLTrans::getString("SECOND_LIFE"); + args["[APP_NAME]"] = getSecondLifeTitle(); splash_msg = LLTrans::getString("StartupLoading", args); LLSplashScreen::show(); LLSplashScreen::update(splash_msg); -- GitLab