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

View File

@ -1015,7 +1015,7 @@ void EmuThread::updatePerformanceMetrics(bool force)
{ {
QString text; QString text;
if (iwidth == 0 || iheight == 0) if (iwidth == 0 || iheight == 0)
text = tr("N/A"); text = tr("No Image");
else else
text = tr("%1x%2").arg(iwidth).arg(iheight); text = tr("%1x%2").arg(iwidth).arg(iheight);