From 1a76f52c40a583cfa5bca01bd792350879e50ddd Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Sun, 25 May 2025 00:06:28 -0300 Subject: [PATCH] update ROM Extraction Message --- src/port/Engine.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/port/Engine.cpp b/src/port/Engine.cpp index a5340e85..d2bee9ec 100644 --- a/src/port/Engine.cpp +++ b/src/port/Engine.cpp @@ -88,7 +88,7 @@ GameEngine::GameEngine() { if (std::filesystem::exists(main_path)) { archiveFiles.push_back(main_path); } else { - if (ShowYesNoBox("No O2R Files", "No O2R files found. Generate one now?") == IDYES) { + if (ShowYesNoBox("Starship - Asset Extraction", "Please provide a Starfox 64 ROM.\n\nSupported Versions:\nUS 1.0\nUS 1.1\n\nAssets will be extracted into an O2R file.") == IDYES) { if(!GenAssetFile()){ ShowMessage("Error", "An error occured, no O2R file was generated.\n\nExiting..."); exit(1); @@ -96,7 +96,7 @@ GameEngine::GameEngine() { archiveFiles.push_back(main_path); } - if (ShowYesNoBox("Extraction Complete", "ROM Extracted. Extract another?") == IDYES) { + if (ShowYesNoBox("Extraction Complete", "ROM Extracted. Extract another?\n\n Starship supports JP and EU ROMs for voice replacement.\n Voice replacement ROM assets can also be installed in:\n Settings->Language->Install JP/EU Audio") == IDYES) { if(!GenAssetFile()){ ShowMessage("Error", "An error occured, no O2R file was generated."); } @@ -291,7 +291,7 @@ bool GameEngine::GenAssetFile(bool exitOnFail) { } } - ShowMessage(("Found " + game.value()).c_str(), "The extraction process will now begin.\n\nThis may take a few minutes.", SDL_MESSAGEBOX_INFORMATION); + ShowMessage(("Starship - Extraction - Found " + game.value()).c_str(), "The extraction process will now begin.\n\nThis may take a few minutes.", SDL_MESSAGEBOX_INFORMATION); return extractor->GenerateOTR(); }