From f887ac509ee38918eb3c64f45f508d7840e4760b Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 20 Oct 2022 14:57:38 +0200 Subject: [PATCH] Use StringRTrim to trim convar string before building console summary --- r5dev/gameui/IConsole.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/r5dev/gameui/IConsole.cpp b/r5dev/gameui/IConsole.cpp index 045149dc..c52af454 100644 --- a/r5dev/gameui/IConsole.cpp +++ b/r5dev/gameui/IConsole.cpp @@ -586,14 +586,8 @@ void CConsole::BuildSummary(string svConVar) { if (!svConVar.empty()) { - for (size_t i = 0; i < svConVar.size(); i++) - { - const char c = svConVar[i]; - if (c == ' ' || c == ';') - { - svConVar.erase(i, svConVar.length() - 1); // Remove space or semicolon before we call 'g_pCVar->FindVar(..)'. - } - } + // Remove trailing space and semicolon before we call 'g_pCVar->FindVar(..)'. + StringRTrim(svConVar, " ;"); if (const ConVar* pConVar = g_pCVar->FindVar(svConVar.c_str())) {