Qt: Change 'N/A' to 'No Image' in status bar

This commit is contained in:
Stenzek 2024-04-06 21:29:33 +10:00 committed by Connor McLaughlin
parent fdb29a3a09
commit 72e8ba2203
1 changed files with 1 additions and 1 deletions

View File

@ -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);