mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-26 16:04:34 +00:00
4KB is too small for some messages. Use 64KB buffer.
OpenGL extensions list bites in the ass again.
This commit is contained in:
parent
c0e5dd0369
commit
6d48404934
@ -2565,7 +2565,7 @@ void View::DrawMessages()
|
|||||||
ImGui::Begin( "Messages", &m_showMessages, ImGuiWindowFlags_ShowBorders );
|
ImGui::Begin( "Messages", &m_showMessages, ImGuiWindowFlags_ShowBorders );
|
||||||
for( auto& v : m_messages )
|
for( auto& v : m_messages )
|
||||||
{
|
{
|
||||||
char tmp[4096];
|
char tmp[64 * 1024];
|
||||||
sprintf( tmp, "%10s | %s", TimeToString( v->time - m_frames[0] ), v->txt );
|
sprintf( tmp, "%10s | %s", TimeToString( v->time - m_frames[0] ), v->txt );
|
||||||
if( m_msgHighlight == v )
|
if( m_msgHighlight == v )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user