Skip to content

Commit

Permalink
Qt: Fix VPS Counter
Browse files Browse the repository at this point in the history
  • Loading branch information
kamfretoz committed Sep 26, 2024
1 parent 774a0e6 commit b0c62ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2-qt/QtHost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ void EmuThread::updatePerformanceMetrics(bool force)
m_last_game_fps = gfps;
}

if (speed != m_last_speed || vfps != m_last_video_fps || force)
if (vfps != m_last_video_fps || force)
{
QMetaObject::invokeMethod(g_main_window->getStatusVPSWidget(), "setText", Qt::QueuedConnection,
Q_ARG(const QString&, tr("VPS: %1 ").arg(vfps, 0, 'f', 0)));
Expand Down

0 comments on commit b0c62ad

Please sign in to comment.