From 4c086e94e4286beb4106488b1142b4cbeffb1f68 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 17 Sep 2022 22:46:00 +0200 Subject: [PATCH] Different coloring for jump/call/ret or privileged mnemonics. --- server/TracyImGui.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/server/TracyImGui.hpp b/server/TracyImGui.hpp index c597293d..a0f218ef 100644 --- a/server/TracyImGui.hpp +++ b/server/TracyImGui.hpp @@ -42,11 +42,11 @@ static constexpr const uint32_t SyntaxColors[] = { static constexpr const uint32_t AsmOpTypeColors[] = { 0xFFE2AF35, // None - 0xFFE2AF35, // Jump - 0xFFE2AF35, // Branch - 0xFFE2AF35, // Call - 0xFFE2AF35, // Ret - 0xFFE2AF35, // Privileged + 0xFF358FE2, // Jump + 0xFF358FE2, // Branch + 0xFF35E2AF, // Call + 0xFF35E2AF, // Ret + 0xFF22FFFF, // Privileged }; static constexpr const uint32_t AsmSyntaxColors[] = {