Skip to content

Commit

Permalink
Qt: Change 'N/A' to 'No Image' in status bar
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Apr 6, 2024
1 parent fdb29a3 commit 72e8ba2
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 @@ -1015,7 +1015,7 @@ void EmuThread::updatePerformanceMetrics(bool force)
{
QString text;
if (iwidth == 0 || iheight == 0)
text = tr("N/A");
text = tr("No Image");
else
text = tr("%1x%2").arg(iwidth).arg(iheight);

Expand Down

0 comments on commit 72e8ba2

Please sign in to comment.