From 6715014de9374ecb0d4d77190edf8bb70434a32d Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 27 Jun 2021 12:05:38 +0200 Subject: [PATCH] Small cosmetic changes to the no games dialog. --- es-app/src/views/ViewController.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/views/ViewController.cpp b/es-app/src/views/ViewController.cpp index c4fea012b..16dc22813 100644 --- a/es-app/src/views/ViewController.cpp +++ b/es-app/src/views/ViewController.cpp @@ -115,7 +115,7 @@ void ViewController::noGamesDialog() "DIRECTORY STRUCTURE CAN BE GENERATED WHICH WILL\n" "CREATE A TEXT FILE FOR EACH SYSTEM PROVIDING SOME\n" "INFORMATION SUCH AS THE SUPPORTED FILE EXTENSIONS.\n" - "THIS IS THE CURRENTLY CONFIGURED ROM PATH:\n"; + "THIS IS THE CURRENTLY CONFIGURED ROM DIRECTORY:\n"; #if defined(_WIN64) mRomDirectory = Utils::String::replace(FileData::getROMDirectory(), "/", "\\"); @@ -124,7 +124,7 @@ void ViewController::noGamesDialog() #endif mNoGamesMessageBox = new GuiMsgBox(mWindow, HelpStyle(), mNoGamesErrorMessage + mRomDirectory, - "CHANGE ROM PATH", [this] { + "CHANGE ROM DIRECTORY", [this] { std::string currentROMDirectory; #if defined(_WIN64) currentROMDirectory = Utils::String::replace(FileData::getROMDirectory(), "/", "\\");