Fix issue when displaying online users in the Windows GUI
This commit is contained in:
parent
e2fb7975c0
commit
026751e2cf
1 changed files with 1 additions and 1 deletions
|
@ -596,7 +596,7 @@ namespace pvpgn
|
|||
if (!(acc = conn_get_account(c)))
|
||||
continue;
|
||||
|
||||
SendMessageW(gui.hwndUsers, LB_ADDSTRING, 0, reinterpret_cast<LPARAM>(account_get_name(acc)));
|
||||
SendMessageA(gui.hwndUsers, LB_ADDSTRING, 0, reinterpret_cast<LPARAM>(account_get_name(acc)));
|
||||
}
|
||||
|
||||
std::wstring user_count(std::to_wstring(connlist_login_get_length()) + L" user(s) online:");
|
||||
|
|
Loading…
Reference in a new issue