From 036a61f9a4674e31f2cba47131a037dbc2bc94f0 Mon Sep 17 00:00:00 2001 From: Matej Mulej Date: Mon, 18 Oct 2021 20:40:09 +0000 Subject: [PATCH] Fix TracyCAppInfo macro argument name --- TracyC.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TracyC.h b/TracyC.h index da412104..7c8ff801 100644 --- a/TracyC.h +++ b/TracyC.h @@ -203,7 +203,7 @@ TRACY_API void ___tracy_emit_plot( const char* name, double val ); TRACY_API void ___tracy_emit_message_appinfo( const char* txt, size_t size ); #define TracyCPlot( name, val ) ___tracy_emit_plot( name, val ); -#define TracyCAppInfo( txt, color ) ___tracy_emit_message_appinfo( txt, color ); +#define TracyCAppInfo( txt, size ) ___tracy_emit_message_appinfo( txt, size ); #ifdef TRACY_HAS_CALLSTACK