From de66ec53322770aee2f1a329b1d181ee20923d0c Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 18 Sep 2017 19:03:29 +0200 Subject: [PATCH] Adjust frame colors. --- server/TracyView.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index c2d9f60b..a1a423fd 100755 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -371,9 +371,9 @@ static ImU32 GetFrameColor( uint64_t frameTime ) enum { GoodTime = 1000 * 1000 * 1000 / 59 }; enum { BadTime = 1000 * 1000 * 1000 / 29 }; - return frameTime > BadTime ? 0xFF0000FF : - frameTime > GoodTime ? 0xFF00FFFF : - frameTime > BestTime ? 0xFF00FF00 : 0xFFFFBB00; + return frameTime > BadTime ? 0xFF2222DD : + frameTime > GoodTime ? 0xFF22DDDD : + frameTime > BestTime ? 0xFF22DD22 : 0xFFDD9900; } void View::DrawFrames()