1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Colors are always in RGB order.

This commit is contained in:
Bartosz Taudul
2017-11-25 15:29:18 +01:00
parent 02b3e54943
commit 2f9a3f7046
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -111,7 +111,7 @@ namespace detail
static inline int LuaZoneBegin( lua_State* L )
{
const uint32_t color = 0x00CC8855;
const uint32_t color = 0x005588CC;
lua_Debug dbg;
lua_getstack( L, 1, &dbg );
@@ -152,7 +152,7 @@ static inline int LuaZoneBegin( lua_State* L )
static inline int LuaZoneBeginN( lua_State* L )
{
const uint32_t color = 0x00CC8855;
const uint32_t color = 0x005588CC;
lua_Debug dbg;
lua_getstack( L, 1, &dbg );