CConsole::AddLog optimizations

Use FormatV to format the string, and use the move constructor to move it into the conlog structure.
This commit is contained in:
Kawe Mazidjatari 2023-04-01 21:42:34 +02:00
parent fd9f9cb00d
commit a7158d0881
2 changed files with 7 additions and 7 deletions

View File

@ -1049,16 +1049,16 @@ void CConsole::AddLog(const ConLog_t& conLog)
// *fmt -
// ... -
//-----------------------------------------------------------------------------
void CConsole::AddLog(const ImVec4& color, const char* fmt, ...) IM_FMTARGS(2)
void CConsole::AddLog(const ImVec4& color, const char* fmt, ...) /*IM_FMTARGS(2)*/
{
char buf[4096];
va_list args{};
string result;
va_list args;
va_start(args, fmt);
vsnprintf(buf, IM_ARRAYSIZE(buf), fmt, args);
buf[IM_ARRAYSIZE(buf) - 1] = 0;
result = FormatV(fmt, args);
va_end(args);
m_Logger.InsertText(ConLog_t(buf, color));
m_Logger.InsertText(ConLog_t(result, color));
}
//-----------------------------------------------------------------------------

View File

@ -55,7 +55,7 @@ public:
void ClearHistory(void);
private: // Internal only.
void AddLog(const ImVec4& color, const char* fmt, ...) IM_FMTARGS(2);
void AddLog(const ImVec4& color, const char* fmt, ...) /*IM_FMTARGS(2)*/;
///////////////////////////////////////////////////////////////////////////
virtual void SetStyleVar(void);