We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b76f906 commit 02fc3deCopy full SHA for 02fc3de
Source/DiabloUI/multi/selgame.cpp
@@ -290,9 +290,9 @@ void selgame_GameSelection_Focus(size_t value)
290
}
291
infoString += '\n';
292
if (gameInfo.peerIsRelayed.value_or(false))
293
- infoString.append(fmt::format(fmt::runtime(_("Latency: {:d} ms (RELAYED)")), gameInfo.latency.value_or(0)));
+ infoString.append(fmt::format(fmt::runtime(_("Ping: {:d} ms (RELAYED)")), gameInfo.latency.value_or(0)));
294
else
295
- infoString.append(fmt::format(fmt::runtime(_("Latency: {:d} ms")), gameInfo.latency.value_or(0)));
+ infoString.append(fmt::format(fmt::runtime(_("Ping: {:d} ms")), gameInfo.latency.value_or(0)));
296
} else {
297
infoString.append(GetErrorMessageIncompatibility(gameInfo.gameData));
298
0 commit comments