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;