mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
fd9f9cb00d
commit
a7158d0881
@ -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));
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user