Loader: deny boot if the firmware is too old

This commit is contained in:
Megamouse 2025-03-28 15:29:29 +01:00 committed by Elad
parent 095c884331
commit 949a80dc0a
6 changed files with 39 additions and 18 deletions

View file

@ -538,6 +538,9 @@ void main_window::show_boot_error(game_boot_result status)
case game_boot_result::still_running:
message = tr("A game or PS3 application is still running or has yet to be fully stopped.");
break;
case game_boot_result::firmware_version:
message = tr("The game or PS3 application needs a more recent firmware version.");
break;
case game_boot_result::firmware_missing: // Handled elsewhere
case game_boot_result::already_added: // Handled elsewhere
case game_boot_result::currently_restricted: