From 2d6a1724ce8761c24f7cc1b927fec2abe92e207a Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 22 Jan 2023 21:41:55 +0100 Subject: [PATCH] Changed the splash screen text 'Populating systems' to 'Loading systems'. --- es-core/src/Window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-core/src/Window.cpp b/es-core/src/Window.cpp index 03ffbbf31..0e4f43fea 100644 --- a/es-core/src/Window.cpp +++ b/es-core/src/Window.cpp @@ -135,8 +135,8 @@ bool Window::init() mSplashTextScanning = std::unique_ptr(mDefaultFonts.at(1)->buildTextCache( "Scanning game files...", 0.0f, 0.0f, DEFAULT_TEXTCOLOR)); - mSplashTextPopulating = std::unique_ptr(mDefaultFonts.at(1)->buildTextCache( - "Populating systems...", 0.0f, 0.0f, DEFAULT_TEXTCOLOR)); + mSplashTextPopulating = std::unique_ptr( + mDefaultFonts.at(1)->buildTextCache("Loading systems...", 0.0f, 0.0f, DEFAULT_TEXTCOLOR)); mSplashTextReloading = std::unique_ptr( mDefaultFonts.at(1)->buildTextCache("Reloading...", 0.0f, 0.0f, DEFAULT_TEXTCOLOR));