From 4f8b131e640f30e56934777eaff65fe5ad7c0067 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sun, 29 Jul 2018 09:47:04 +0200 Subject: [PATCH] Qt/Emu: Fix RSX capture boot process --- rpcs3/rpcs3qt/main_window.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index 4d5eb71476..6072ae36b4 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -1814,10 +1814,7 @@ void main_window::dropEvent(QDropEvent* event) m_gameListFrame->Refresh(true); break; case drop_type::drop_rrc: // replay a rsx capture file - if (Emu.BootRsxCapture(sstr(dropPaths.first()))) - { - LOG_SUCCESS(GENERAL, "rcc Boot from drag and drop done: %s", sstr(dropPaths.first())); - } + BootRsxCapture(sstr(dropPaths.first())); default: LOG_WARNING(GENERAL, "Invalid dropType in gamelist dropEvent"); break;