MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / onVMResumed

Method onVMResumed

pcsx2-qt/MainWindow.cpp:2431–2454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2429}
2430
2431void MainWindow::onVMResumed()
2432{
2433 // update UI
2434 {
2435 QSignalBlocker sb(m_ui.actionPause);
2436 m_ui.actionPause->setChecked(false);
2437 }
2438 {
2439 QSignalBlocker sb(m_ui.actionToolbarPause);
2440 m_ui.actionToolbarPause->setChecked(false);
2441 }
2442
2443 s_vm_paused = false;
2444 m_was_disc_change_request = false;
2445 updateWindowTitle();
2446 updateStatusBarWidgetVisibility();
2447 m_status_verbose_widget->setText(m_last_fps_status);
2448 m_last_fps_status = QString();
2449 if (m_display_surface)
2450 {
2451 updateDisplayWidgetCursor();
2452 m_display_surface->setFocus();
2453 }
2454}
2455
2456void MainWindow::onVMStopped()
2457{

Callers

nothing calls this directly

Calls 1

setFocusMethod · 0.80

Tested by

no test coverage detected