mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
Add error for missing firmware
This commit is contained in:
parent
e28e51463b
commit
94478ad4a0
3 changed files with 11 additions and 1 deletions
|
|
@ -256,12 +256,15 @@ void main_window::show_boot_error(game_boot_result status)
|
|||
case game_boot_result::file_creation_error:
|
||||
message = tr("The emulator could not create files required for booting.");
|
||||
break;
|
||||
case game_boot_result::firmware_missing:
|
||||
message = tr("Firmware has not been installed. Install firmware with the \"File > Install Firmware\" menu option.");
|
||||
break;
|
||||
case game_boot_result::generic_error:
|
||||
default:
|
||||
message = tr("Unknown error.");
|
||||
break;
|
||||
}
|
||||
const QString link = tr("<br /><br />For information on how to dump your PS3 games, read the <a href=\"https://rpcs3.net/quickstart\">quickstart guide</a>.");
|
||||
const QString link = tr("<br /><br />For information on setting up the emulator and dumping your PS3 games, read the <a href=\"https://rpcs3.net/quickstart\">quickstart guide</a>.");
|
||||
|
||||
QMessageBox msg;
|
||||
msg.setWindowTitle(tr("Boot Failed"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue