From 876b661c95cef47434845b4e0d06cf52ae2bb7f0 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Wed, 30 Oct 2024 23:20:56 +0900 Subject: [PATCH] Fixed text string --- es-app/src/guis/GuiMenu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index 4cab447c6..7373c47c7 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -2364,12 +2364,12 @@ void GuiMenu::addVersionInfo() // Attempt to open the version file and read a line into retroDeckVersion; // also check that the line is not empty to ensure valid version information if (versionFile && std::getline(versionFile, retroDeckVersion) && !retroDeckVersion.empty()) { - mVersion.setText("RetroDECK" + " " + retroDeckVersion); + mVersion.setText("RetroDECK " + retroDeckVersion); LOG(LogInfo) << "RetroDECK version read OK."; } else { LOG(LogInfo) << "Error: Cannot read version from file or file is empty!"; retroDeckVersion = "UNKNOWN"; - mVersion.setText("RetroDECK" + " " + retroDeckVersion); + mVersion.setText("RetroDECK " + retroDeckVersion); } #else // If RETRODECK is NOT defined, execute this block