From ae1d0516c25a045280db136b01bd75bc31bfe62d Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 15 Jun 2022 02:06:30 +0200 Subject: [PATCH] Use proper types --- r5dev/gameui/IConsole.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/gameui/IConsole.cpp b/r5dev/gameui/IConsole.cpp index cf9e213a..6054c3a4 100644 --- a/r5dev/gameui/IConsole.cpp +++ b/r5dev/gameui/IConsole.cpp @@ -732,7 +732,7 @@ int CConsole::TextEditCallback(ImGuiInputTextCallbackData* iData) sprintf_s(szValue, sizeof(szValue), "%s", m_szInputBuf); // Remove space or semicolon before we call 'g_pCVar->FindVar(..)'. - for (int i = 0; i < strlen(szValue); i++) + for (size_t i = 0; i < strlen(szValue); i++) { if (szValue[i] == ' ' || szValue[i] == ';') { @@ -741,7 +741,7 @@ int CConsole::TextEditCallback(ImGuiInputTextCallbackData* iData) } ConVar* pConVar = g_pCVar->FindVar(szValue); - if (pConVar != nullptr) + if (pConVar) { // Display the current and default value of ConVar if found. snprintf(m_szSummary, 256, "(\"%s\", default \"%s\")", pConVar->GetString(), pConVar->GetDefault());