This commit is contained in:
Irlan
2019-03-31 11:02:26 -03:00
parent 725ca3ce31
commit fb895192e7
3 changed files with 8 additions and 8 deletions

View File

@ -26,12 +26,12 @@ extern bool b3_convexCache;
void b3BeginProfileScope(const char* name)
{
g_profiler->PushEvent(name);
g_profiler->BeginScope(name);
}
void b3EndProfileScope()
{
g_profiler->PopEvent();
g_profiler->EndScope();
}
Test::Test() :