From 31101b482847505b73d0b0e11d030776e956ff44 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Mon, 21 May 2018 14:13:37 +0200 Subject: [PATCH] Qt: use correct menu icon for "Play last played game" on booting RPCS3 --- rpcs3/rpcs3qt/main_window.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index f344ecd6e8..b79733f519 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -152,6 +152,7 @@ void main_window::Init() { ui->sysPauseAct->setEnabled(true); ui->sysPauseAct->setText(tr("&Start last played game\tCtrl+E")); + ui->sysPauseAct->setIcon(m_icon_play); ui->toolbar_start->setToolTip(tr("Start last played game")); ui->toolbar_start->setEnabled(true); } @@ -385,7 +386,7 @@ void main_window::BootRsxCapture() LOG_ERROR(GENERAL, "Capture Boot Failed"); else LOG_SUCCESS(LOADER, "Capture Boot Success"); -} +} void main_window::InstallPkg(const QString& dropPath) {