From 37f3f7c86cf1948671f66e398f03473fc42e36a8 Mon Sep 17 00:00:00 2001 From: JoKeRZH429 <83122870+JoKeRZH429@users.noreply.github.com> Date: Fri, 14 Aug 2026 20:22:29 +0500 Subject: [PATCH] fix: correctly display monthly elo in persona --- .../GameClient/GUI/GUICallbacks/Menus/PopupPlayerInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/PopupPlayerInfo.cpp b/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/PopupPlayerInfo.cpp index f1e2d38018a..6885c78fc34 100644 --- a/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/PopupPlayerInfo.cpp +++ b/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/PopupPlayerInfo.cpp @@ -969,7 +969,7 @@ void PopulatePlayerInfoWindows( AsciiString parentWindowName ) if (win) { #if defined(GENERALS_ONLINE) - uStr.format(L"%d", stats.elo_rating, stats.monthly_elo_rating); + uStr.format(L"%d", stats.monthly_elo_rating); #else uStr.format(L"%d", numDiscons); #endif