Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-09-17 23:46:00 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-17 23:59:50 +0300
commit4c086e94e4286beb4106488b1142b4cbeffb1f68 (patch)
treec28adc859521b629f6a1f0613ebfa92a5f1591ed /server
parentdc31ebfd9c6247cea4948d67c6d1f0ac6448cbba (diff)
Different coloring for jump/call/ret or privileged mnemonics.
Diffstat (limited to 'server')
-rw-r--r--server/TracyImGui.hpp10
1 files 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[] = {