Use proper macro.

This commit is contained in:
Bartosz Taudul 2020-09-29 18:15:24 +02:00
parent 44aef7660d
commit 1138307bd1

View File

@ -1091,13 +1091,13 @@ enum SubSystems
void Physics::Process() void Physics::Process()
{ {
ZoneScopedN( __tracy, SUBSYSTEMS & Sys_Physics ); // always true, no runtime cost ZoneNamed( __tracy, SUBSYSTEMS & Sys_Physics ); // always true, no runtime cost
... ...
} }
void Graphics::Render() void Graphics::Render()
{ {
ZoneScopedN( __tracy, SUBSYSTEMS & Sys_Graphics ); // always false, no runtime cost ZoneNamed( __tracy, SUBSYSTEMS & Sys_Graphics ); // always false, no runtime cost
... ...
} }
\end{lstlisting} \end{lstlisting}