From 41fc84ae514ce8d964b3f25060a4d20966f4502d Mon Sep 17 00:00:00 2001 From: Anderson_Cardoso <43047877+andercard0@users.noreply.github.com> Date: Wed, 14 Jul 2021 10:55:07 -0300 Subject: [PATCH] Update information about SBI file A simple update message to make it more clear for end users in regard SBI files. --- src/core/system.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/system.cpp b/src/core/system.cpp index 8f0a24602..5628c1f3c 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -2126,7 +2126,8 @@ bool CheckForSBIFile(CDImage* image) g_host_interface->ReportError(SmallString::FromFormat( g_host_interface->TranslateString( "System", "You are attempting to run a libcrypt protected game without an SBI file:\n\n%s: %s\n\nYour dump is " - "incomplete, you must add the SBI file to run this game."), + "incomplete, you must add the SBI file to run this game. \n\n" + "The name of the SBI file must match the name of the disc image."), s_running_game_code.c_str(), s_running_game_title.c_str())); return false; }