From caa1b1a7924b42a9a6cdf9e9c2a0329320c18e59 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 15 Aug 2020 02:26:35 +0200 Subject: [PATCH] Fix initialization list order. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 68138c8d..8627521a 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -135,8 +135,8 @@ View::View( const char* addr, int port, ImFont* fixedWidth, ImFont* smallFont, I , m_pause( false ) , m_forceConnectionPopup( true, true ) , m_frames( nullptr ) - , m_reactToCrash( true ) , m_messagesScrollBottom( true ) + , m_reactToCrash( true ) , m_smallFont( smallFont ) , m_bigFont( bigFont ) , m_stcb( stcb )