diff --git a/Tracy.hpp b/Tracy.hpp index 6ea6b6eb..2f8e4f2d 100644 --- a/Tracy.hpp +++ b/Tracy.hpp @@ -1,6 +1,7 @@ #ifndef __TRACY_HPP__ #define __TRACY_HPP__ +#include "common/TracyColor.hpp" #include "common/TracySystem.hpp" #ifndef TRACY_ENABLE diff --git a/common/TracyColor.hpp b/common/TracyColor.hpp index af398c20..4825c0fb 100644 --- a/common/TracyColor.hpp +++ b/common/TracyColor.hpp @@ -3,7 +3,9 @@ namespace tracy { -enum class Color +struct Color +{ +enum ColorType { Snow = 0xfffafa, GhostWhite = 0xf8f8ff, @@ -682,6 +684,7 @@ enum class Color Silver = 0xc0c0c0, Teal = 0x008080, }; +}; } #endif