WCHAR -> wchar_t

This commit is contained in:
Tropical
2026-03-30 00:27:49 -05:00
parent be2c65486d
commit f03c7163f4
55 changed files with 261 additions and 262 deletions

View File

@@ -444,7 +444,7 @@ std::wstring CPlatformNetworkManagerStub::GatherRTTStats() {
((NetworkPlayerQNet*)GetPlayerByIndex(i))->GetQNetPlayer();
if (!pQNetPlayer->IsLocal()) {
ZeroMemory(stat, 32 * sizeof(WCHAR));
ZeroMemory(stat, 32 * sizeof(wchar_t));
swprintf(stat, 32, L"%d: %d/", i, pQNetPlayer->GetCurrentRtt());
stats.append(stat);
}