Skip to content

Commit

Permalink
GUI: followup to #7347
Browse files Browse the repository at this point in the history
Show "Reboot" on current running game when there's no config.
  • Loading branch information
elad335 authored and Nekotekina committed Mar 9, 2020
1 parent 636ed4a commit 5751b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/rpcs3qt/game_list_frame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ void game_list_frame::ShowContextMenu(const QPoint &pos)

const bool is_current_running_game = (Emu.IsRunning() || Emu.IsPaused()) && current_game.serial == Emu.GetTitleID();

QAction* boot = new QAction(gameinfo->hasCustomConfig ? tr(is_current_running_game ? "&Reboot with global configuration" : "&Boot with global configuration") : tr("&Boot"));
QAction* boot = new QAction(gameinfo->hasCustomConfig ? tr(is_current_running_game ? "&Reboot with global configuration" : "&Boot with global configuration") : tr(is_current_running_game ? "&Reboot" : "&Boot"));
QFont font = boot->font();
font.setBold(true);

Expand Down

0 comments on commit 5751b77

Please sign in to comment.